我想使用我的 javascript 结果来设置一个 php 变量。
<script>
var hello;
hello = "ilovetuna.php";
</script>
和
<?php
$variable = "<script>document.write(hello);</script>";
?>
和
<?php
require('simple_html_dom.php');
$html = file_get_html($variable);
echo $html;
?>
警告:file_get_contents(document.write(hello);): 未能打开流
有人知道如何处理吗?谢谢
ps:我尝试在 " 之前使用 \ 字符串,还尝试了不同的 ' 和 ",还有 ( and ) 。但似乎不起作用。