Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8473669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T17:24:55+00:00 2026-06-10T17:24:55+00:00

I am trying to create a function to initiate date_compare() which is a usort

  • 0

I am trying to create a function to initiate date_compare() which is a usort function for a specific array and key.

function init_date_compare($key, $array) {
    $key2 = $key;
    function date_compare($a, $b) {
        global $key2;
        $t1 = strtotime($a[$key2]); $t2 = strtotime($b[$key2]);
        return $t2 - $t1;
    }
    usort($array, "date_compare");
}
$arr = array(array("Aug-2-2012"), array("June-2-2012"));
$arr = init_date_compare(0, $arr);
print_r($arr);

This outputs:

Notice: Undefined index: in...

(So basically null, the scoping did not work).

I am not sure how scoping works with functions inside functions, but if I remember right, it is possible. I tried throwing in some globals and initializing $key2 but I am unable to get this to work.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T17:24:57+00:00Added an answer on June 10, 2026 at 5:24 pm

    The reason your code isn’t working is because global $key2; inside the date_compare() function will not look for it inside the scope init_date_compare(); rather it will expect to find it inside the global scope.

    Besides that, either the array should be passed by reference (i.e. &$array) via the function parameters, or the array should be returned from it.

    Closures would make this a whole lot nicer (PHP >= 5.3):

    function init_date_compare($key, &$array)
    {
        usort($array, function(array $a, array $b) use ($key) {
            $t1 = strtotime($a[$key]); $t2 = strtotime($b[$key]);
            return $t2 - $t1;
        });
    }
    

    Another way is by using an object to encapsulate the state:

    class DateComparer
    {
        private $key;
    
        public function __construct($key)
        {
            $this->key = $key;
        }
    
        public function compare(array $a, array $b)
        {
            $t1 = strtotime($a[$this->key]); $t2 = strtotime($b[$this->key]);
            return $t2 - $t1;
        }
    }
    
    function init_date_compare($key, &$array)
    {
        usort($array, array(new DateComparer($key), 'compare'));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to create a function, that will return a mysql query, which i
I am trying to create a function which will give me alphabet position when
I'm trying to create a function that would dynamically allocate an array, sets the
I'm trying to create a function that shows a modal dialog which when called
I'm trying to create a function that will loop through an array of various
I'm trying create this function such that if any key besides any of the
I'm trying to create a function that would return a PDF document. Something like
I'm trying to create a function in C# which will allow me to, when
I'm trying to create a function that will take a string which could be
I'm trying to create function which removes all file and directories on webhosting excluding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.