Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
723 views
in Technique[技术] by (71.8m points)

php - Having the variable names in func_get_args()

As this function can take unknown numbers of parameters:

function BulkParam(){
    return func_get_args();
}

A print_r will print only the values, but how i can retrieve the variable names as well as the array key? For example:

$d1 = "test data";
$d2 = "test data";
$d3 = "test data";

print_r(BulkParam($d1, $d2, $d3));

It will print this:

Array
(
    [0] => test data
    [1] => test data
    [2] => test data
)

But i want to have the variables name as the index name or key name of all arrays. Then the array would look like this:

Array
(
    [d1] => test data
    [d2] => test data
    [d3] => test data
)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I'm sure the PHP elite will have so many problems with this solution but it does work (I'm using PHP 5.6) and honestly I don't care since I've done hacks far worst than this for prototyping in many of my Java projects.

function args_with_keys( array $args, $class = null, $method = null, $includeOptional = false )
{
    if ( is_null( $class ) || is_null( $method ) )
    {
        $trace = debug_backtrace()[1];

        $class = $trace['class'];
        $method = $trace['function'];
    }

    $reflection = new ReflectionMethod( $class, $method );

    if ( count( $args ) < $reflection->getNumberOfRequiredParameters() )
        throw new RuntimeException( "Something went wrong! We had less than the required number of parameters." );

    foreach ( $reflection->getParameters() as $param )
    {
        if ( isset( $args[$param->getPosition()] ) )
        {
            $args[$param->getName()] = $args[$param->getPosition()];
            unset( $args[$param->getPosition()] );
        }
        else if ( $includeOptional && $param->isOptional() )
        {
            $args[$param->getName()] = $param->getDefaultValue();
        }
    }

    return $args;
}

Using the PHP Reflections API, we get all the method parameters and align them with their numeric indexes. (There might be a better way to do that.)

To use simply type:

print_r( args_with_keys( func_get_args() ) );

I also added the ability to optionally return the method's optional parameters and values. I'm sure this solution is far from perfect, so you're mileage may vary. Do keep in mind that while I did make it so providing the class and method was optional, I do highly suggest that you specify them if you're going anywhere near a production environment. And you should try to avoid using this in anything other than a prototype setup to begin with.

Specify the class and method with:

print_r( args_with_keys( func_get_args(), __CLASS__, __FUNCTION__ ) );

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...