本文整理汇总了PHP中MapUtils::MapToMethodParameters方法的典型用法代码示例。如果您正苦于以下问题:PHP MapUtils::MapToMethodParameters方法的具体用法?PHP MapUtils::MapToMethodParameters怎么用?PHP MapUtils::MapToMethodParameters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MapUtils
的用法示例。
在下文中一共展示了MapUtils::MapToMethodParameters方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Create
/**
* Creates a new object of the given type, using the optional parameters.
* When pseudo-namespace support is enabled class names can become very long,
* and this function provides an alternative way to create objects that is
* more readable.
* @param string $type the type of object to create
* @param array $params parameters to pass into the constructor, as either
* flat array in the correct order for the constructor or as an
* associative array from parameter name to value
* @return mixed a new instance of a class that represents that type
*/
public function Create($type, $params = null)
{
if (array_key_exists($type, $this->options['classmap'])) {
$class = $this->options['classmap'][$type];
$reflectionClass = new ReflectionClass($class);
if (isset($params)) {
if (MapUtils::IsMap($params)) {
$params = MapUtils::MapToMethodParameters($params, $reflectionClass->getConstructor());
}
return $reflectionClass->newInstanceArgs($params);
} else {
return $reflectionClass->newInstance();
}
} else {
trigger_error('Unknown type: ' . $type, E_USER_ERROR);
}
}
示例2: testMapToMethodParameters
/**
* Test converting a map to a set of method parameters.
* @param array $map the map of parameter names to values
* @param array $expected the expected array of parameter values
* @covers MapUtils::MapToMethodParameters
* @dataProvider MapToMethodParametersProvider
*/
public function testMapToMethodParameters(array $map, array $expected)
{
$reflectionClass = new ReflectionClass($this);
$reflectionMethod = $reflectionClass->getMethod('SampleMethod');
$result = MapUtils::MapToMethodParameters($map, $reflectionMethod);
$this->assertEquals($expected, $result);
}