基本上我的问题如标题所述......
我想让用户能够为类中的静态方法定义别名(在我的情况下专门针对MyClass)。
我没有在class_alias中找到类似的功能。当然,用户可以定义自己的函数来调用静态方法来实现这个目标......但是还有其他/更好/更简单/不同的方法吗?
到目前为止,这是我的尝试......
<?php
class MyClass {
/**
* Just another static method.
*/
public static function myStatic($name) {
echo "Im doing static things with $name :)";
}
/**
* Creates an alias for static methods in this class.
*
* @param $alias The alias for the static method
* @param $method The method being aliased
*/
public static function alias($alias, $method) {
$funcName = 'MyClass::'.$method; // TODO: dont define class name with string :p
if (is_callable($funcName)) {
$GLOBALS[$alias] = function() use ($funcName){
call_user_func_array($funcName, func_get_args());
};
}
else {
throw new Exception("No such static method: $funcName");
}
}
}
MyClass::alias('m', 'myStatic');
$m('br3nt');
此外,请随意评论我可能没有考虑过的方法中的任何优点或缺点。我知道这种方法存在一些风险,例如,在用户定义了别名变量之后,可以覆盖别名变量。
答案 0 :(得分:5)
也许你可以使用__callStatic
“魔法”方法。有关详细信息,请参阅here。
但我不确定您打算如何在别名和实际的静态方法之间进行映射。也许您可以使用配置XML来指定映射,然后使用__callStatic
将调用转发给实际方法。