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

  • Home
  • SEARCH
  • 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 3941064
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:29:44+00:00 2026-05-20T00:29:44+00:00

Referencing a method parameter variable from within a sub-function of that method doesn’t seem

  • 0

Referencing a method parameter variable from within a sub-function of that method doesn’t seem to work even when global is specified.

public function sortArray(&$array, $keyToCompare){// BOOL sortArray( ARR &$array, STR $keyToCompare )
    function cmpVals($pairA, $pairB){
        global $keyToCompare;
        return strcmp($pairA[$keyToCompare], $pairB[$keyToCompare]);
    }
    return uasort($array, 'cmpVals');
}

Is it even possible to reference a method parameter from within a sub-function? If so… how?

For my specific example above I realise I could use a closure to achieve the same goal but I don’t want the script to be PHP 5.3 dependent.

  • 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-05-20T00:29:45+00:00Added an answer on May 20, 2026 at 12:29 am

    Any reason you can’t make it static?

    class YourClassName {
        public static $keyToCompare;
        public function sortArray(&$array, $keyToCompare){// BOOL sortArray( ARR &$array, STR $keyToCompare )
            self::$keyToCompare = $keyToCompare;
            function cmpVals($pairA, $pairB){
                $keyToCompare = YourClassName::$keyToCompare;
                return strcmp($pairA[$keyToCompare], $pairB[$keyToCompare]);
            }
            return uasort($array, 'cmpVals');
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having difficulty referencing this from within a javascript inline function, within an object
I've wrapped a dll method that has an integer as an out parameter in
I have a question about the BufferedImage#getType method. When referencing a PNG image from
If I avoid referencing assemblies that don't exist in the silverlight 2.0 runtime, will
Edit for intro: We know that a ref parameter in C# passes a reference
I recently asked this question: Compiler error referencing custom C# extension method Marc Gravell
I've added an extension method that is a shortcut to string.Format: public static string
Referencing this question: System.Reflection.Assembly.LoadFile Locks File System.IO.File.ReadAllBytes(path) wont work since it's not a standalone
I want to convert a lambda expression referencing a property or sub-property of an
When referencing a method's address, should we take into account the overriding or not?

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.