如何从图像中的变量获取值。不能说这是一个变量,因为图像中没有var的东西。如果它是var,我可以做到,但是它不是var,所以我无法获得价值。它在脚本标签内。请帮助
我尝试了下面的代码,但没有返回任何内容。
$data_dom = new DOMDocument();
libxml_use_internal_errors(true);
$data_dom->loadHTML($hasil);
$xpath = new DOMXPath($data_dom);
$result = $xpath->query('//script');
$haha=[];
foreach($result as $currScriptTag)
{
$currScriptContent6 = $currScriptTag->nodeValue;
array_push($haha,$currScriptContent6."<br><br>");
$matchFound6 = preg_match("/data[UI_DEPART + '3'] (.*)/", $currScriptContent6, $matches6);
if($matchFound6)
{
$key6 = $matches6[1];
$hasil_key6 = $key6;
}
}
Here is the image link 我希望得到'='之后的值,这是一个很长的值,我在工作中需要它。感谢您的帮助