将数组分隔为变量-PHP
如何将第二个数组用作单独的变量? 并将其打印为例如链接。
我当前的代码是:
$result = $query->product('1149632')
->show(array('name','image','salePrice','url', 'sku'))->query();
print <<<THIS
<div>$result</div>
THIS;
谢谢
How can I use the second array as a seperate variable?
and print it as, for example, a link.
My current code is:
$result = $query->product('1149632')
->show(array('name','image','salePrice','url', 'sku'))->query();
print <<<THIS
<div>$result</div>
THIS;
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果该
$query()
方法调用返回一个数组,那么您可以执行以下操作:If that
$query()
method call returns an array, then you can do something like this: