如何在php中爆炸链接并放入数组并在JSON中进行转换

时间:2016-01-08 16:18:20

标签: php jquery arrays json image

示例:

<img src="../uploads/images/nameimage-nameitem1-22-33-nameitem2-55-44.png">
<button >Edit image</button>

Array:
image: nameitem1
x: 22
y: 33

Image: nameitem2
x:55
y:44


<img src="../uploads/images/nameimage-nameitem1-18-43-nameitem2-29-40-nameitem3-35-46-nameitem4-38-16-nameitem4-27-36-nameitem5-40-10.png">
<button>Edit image</button>

Array:
image: nameitem1
x: 18
y: 43

Image: nameitem2
x:29
y:40

Image: nameitem3
x:35
y:46.... etc.

点击&#34;编辑图片&#34;我需要转换链接在JSON中并在Jquery变量中恢复信息。

我知道我需要使用json_encode,但如何在php中爆炸链接并放入数组?

EDITED

使用这个正则表达式,我只能得到图像网址

%<img.*?src=["\'](.*?)["\'].*?/>%i

感谢您的帮助

0 个答案:

没有答案