ReflectionFunctionAbstract::getParameters

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

ReflectionFunctionAbstract::getParameters获取参数

描述

public ReflectionFunctionAbstract::getParameters(): array

获取参数作为 ReflectionParameter 对象数组,按其在源代码中定义的顺序排列。

参数

此函数没有参数。

返回值

参数,作为 ReflectionParameter 对象。

参见

添加注释

用户贡献的注释 2 个注释

dabidi at slupca dot pl
8 年前
这是我使用反射的私有框架的一部分。
此函数从主题方法获取参数列表,并将来自 $_REQUEST($_GET、$_POST 和 $_COOKIE)的相应变量放入其中

<?php
public static function fire_theme_method($class, $method)
{
$fire_args=array();

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

foreach(
$reflection->getParameters() AS $arg)
{
if(
$_REQUEST[$arg->name])
$fire_args[$arg->name]=$_REQUEST[$arg->name];
else
$fire_args[$arg->name]=null;
}

return
call_user_func_array(array($class, $method), $fire_args);
}
?>
例如,如果我的主题方法只需要 id,而我们得到以下 URL
http://example.com/my_class/my_method/?id=12&some_unwanted_var=123
将忽略 some_unwanted_var

当然,在它的后面我还有 .htaccess、自动加载器和控制器
a dot lucassilvadeoliveira at gmail dot com
3 年前
我们可以使用此功能根据某些数据结构自动将参数传递给我们的函数。

注意:我使用的是 php 8.0> 的名为“命名参数”的功能。

<?php

$valuesToProcess
= [
'name' => 'Anderson Lucas Silva de Oliveira',
'age' => 21,
'hobbie' => 'Play games'
];

function
processUserData($name, $age, $job = "", $hobbie = "")
{
$msg = "Hello $name. You have $age years old";
if (!empty(
$job)) {
$msg .= ". Your job is $job";
}

if (!empty(
$hobbie)) {
$msg .= ". Your hobbie is $hobbie";
}

echo
$msg . ".";
}

$refFunction = new ReflectionFunction('processUserData');
$parameters = $refFunction->getParameters();

$validParameters = [];
foreach (
$parameters as $parameter) {
if (!
array_key_exists($parameter->getName(), $valuesToProcess) && !$parameter->isOptional()) {
throw new
DomainException('Cannot resolve the parameter' . $parameter->getName());
}

if(!
array_key_exists($parameter->getName(), $valuesToProcess)) {
continue;
}

$validParameters[$parameter->getName()] = $valuesToProcess[$parameter->getName()];
}

$refFunction->invoke(...$validParameters);
?>

结果为

Hello Anderson Lucas Silva de Oliveira. You have 21 years old. Your hobbie is Play games.
To Top