我在下面的PHP遗留代码中打算动态返回方法的名称。
public function getMethod($fieldName){
//do stuff
return $methodName;
}
返回的方法名称类似于:
setClient
的setName
setAge
就在这里。 问题是当我使用这些方法时。我有一个名为Model的类,它具有以下方法:
class Model {
public function find () {
$nameClass = get_called_class();
$instance = new $nameClass;
$result = $this->conn->select();//the select method returns a SQL SELECT from the database
if (isset($result[0])) {
foreach ($result[0] as $key => $val) {
$methodProp = $this->getMethod(key);
$instance->$methodProp($val);
}
} else {
throw new Exception('You have a error in your class');
}
}
}
以下是var_dump($result)
的要求:
array (size=1)
0 =>
object(stdClass)[6]
public 'id' => string '1' (length=1)
public 'id_erp' => string '0' (length=1)
public 'name' => string 'Derp' (length=18)
public 'email' => null
public 'type_ota' => null
public 'user' => string 'derp_derp' (length=7)
public 'password' => string '1234' (length=4)
public 'url_logo' => null
public 'status' => string '1' (length=1)
public 'date' => string '2015-06-08 14:41:50' (length=19)
然后我有一些扩展此模型的类:
class Company extends Model {
public function setClient (Client $cli) {
//do stuff
}
public function setName($name) {
//do stuff
}
public function setAge($age) {
//do stuff
}
}
//here I use the class
$myCompany = new Company();
$myCompany->find();
方法setName()
和setAge()
工作正常,但setClient()
返回
捕获致命错误:传递给setClient()的参数1必须是Client的一个实例,给定字符串
简而言之,我如何处理动态方法和PHP输入? 寻求帮助,我找到了关于Reflection的内容,但我之前从未使用过这个课程,我发现的例子对我没有帮助,尽管我认为这是正确的方法。
有没有人有类似的经历?
更新
我试图在我的问题中加入一些代码来澄清我的问题。
答案 0 :(得分:2)
你的问题在这里
public function setClient (Client $cli) {
//do stuff
}
查看参数旁边是否有类名?这叫做type hinting。这意味着参数必须是您指定的类的实例,否则您将收到您发布的错误。在您的代码中的某个地方,您正在调用
$method($param);
$param
不是Client
的实例。这就是你必须解决的问题。无论调用setClient
必须有Client
的实例。
$param = new Client();
$method($param);
答案 1 :(得分:2)
如果我正确理解您的问题,您需要检查该方法想要的类型提示。我从the docs获取了此代码段。
<?php
//Target our class
$reflector = new ReflectionClass('MyClass');
//Get the parameters of a method
$parameters = $reflector->getMethod('FireCannon')->getParameters();
//Loop through each parameter and get the type
foreach($parameters as $param)
{
//Before you call getClass() that class must be defined!
echo $param->getClass()->name;
}
将上面的代码添加到您的代码中。这将检查方法中的参数是否是一个对象,如果是一个对象,它将检查该类是否与给定的值相同。如果参数不是对象,则可以只调用方法,或者如果键入非对象参数,则可以检查它们是否相等。这段代码肯定应该被修改和清理,但我认为这足以让我明白这一点。
class Model {
public function find () {
$nameClass = get_called_class();
$instance = new $nameClass;
$result = $this->conn->select();//the select method returns a SQL SELECT from the database
if (!isset($result[0])) {
throw new Exception('You have a error in your class');
}
foreach ($result[0] as $key => $val) {
$methodProp = $this->getMethod($key);
$reflector = new ReflectionClass($nameClass);
$reflectorMethod = $reflector->getMethod($methodProp);
// Make sure method doesn't require more than one param,
// and it has defined at least one param.
if ($reflectorMethod->getNumberOfRequiredParameters() > 1 ||
$reflectorMethod->getNumberOfParameters() < 1
) {
// Throw error
}
//Get the parameters of a method
$parameters = $reflectorMethod->getParameters();
if (is_object($parameters[0])) {
if (!is_object($val) {
// Throw error
}
//Before you call get_class() that class must be defined!
//Use either class_exists($nameClass); or
//in_array($nameClass, get_declared_classes()); to check.
if ($val->getClass()->name !== get_class($parameters[0])) {
// Throw error
}
} else if (gettype($parameters[0]) !== gettype($val)) {
// Throw error
}
$instance->$methodProp($val);
}
}
}