使用字符串创建对象
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者,更简洁,并为类使用字符串:
Or, much cleaner, and using a string for the class: