PHP foreach表结果

时间:2017-05-12 22:44:40

标签: php arrays foreach

我想使用爆炸或其他东西来分隔这些图像。

IMAGES = http://i.imgur.com/2L1nGRP.png&http://i.imgur.com/GnsB51Q.png

我想将它转换为数组。

1 个答案:

答案 0 :(得分:1)

您希望使用'&'explode字符串作为界限。

$images = array_explode('&', $query[1]->Image);

这将为您提供输入字符串中的图像网址数组。