使用字符串创建对象

发布于 2024-10-11 09:00:15 字数 365 浏览 2 评论 0原文

我在 PHP 中有以下对象创建行:

$countryTargetSearchParameter = new CountryTargetSearchParameter(array(new CountryTarget('JP')));

我试图将其替换为:

$countryTargetSearchParameter = new CountryTargetSearchParameter(array($LocArray));

其中 $LocArray 等于 new CountryTarget('JP')。但是,我无法让它发挥作用。我可以寻求帮助吗?

谢谢
贾伊

I have the following object creation line in PHP:

$countryTargetSearchParameter = new CountryTargetSearchParameter(array(new CountryTarget('JP')));

I am trying to replace it with:

$countryTargetSearchParameter = new CountryTargetSearchParameter(array($LocArray));

where $LocArray is equal to new CountryTarget('JP'). However, I am not able to get this to work. Can I get some help please.

Thank you
Jai

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

属性 2024-10-18 09:00:15
class CountryTargetSearchParameter {
    public function __construct(array $array_with_string) {
        $this->new_object = new CountryTarget($array_with_string[0]);
    }
}
$array_with_string = array('JP');
$test = new CountryTargetSearchParameter($array_with_string);

或者,更简洁,并为类使用字符串:

class CountryTargetSearchParameter {
    public function __construct($name_of_class, $parameter) {
        $this->new_object = new $name_of_class($parameter);
    }
}
$test = new CountryTargetSearchParameter('CountryTarget', 'JP');
class CountryTargetSearchParameter {
    public function __construct(array $array_with_string) {
        $this->new_object = new CountryTarget($array_with_string[0]);
    }
}
$array_with_string = array('JP');
$test = new CountryTargetSearchParameter($array_with_string);

Or, much cleaner, and using a string for the class:

class CountryTargetSearchParameter {
    public function __construct($name_of_class, $parameter) {
        $this->new_object = new $name_of_class($parameter);
    }
}
$test = new CountryTargetSearchParameter('CountryTarget', 'JP');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文