我正在尝试获取javascript代码中包含的页面内容。我需要的是第二个变量myfile=[{CONTENT I NEED}];
(如果你看前两个是空的)我需要在myfile=[{CONTENT I NEED}];
myvideo="",myfile="",myvideo="";myfile=[{CONTENT I NEED}];
我的php
preg_match('#myfile= (.*?);\s*$#m', $file_content, $result);
echo $result[1];
答案 0 :(得分:0)
$s = 'myvideo="",myfile="",myvideo="";myfile=[{CONTENT I NEED}];';
preg_match_all('/.*myfile=(.*);.*/', $s, $results);
echo $results[1][0];
给出:
[{CONTENT I NEED}]