如何通过浏览器直接发送Vars名称,如下所示:
http://example.com/?test=$var[0][1]
然后在PHP中:
$var = array(array("foo","bar"));
echo $_GET['test']; // bar
现在它回应:
$var[0][1]
答案 0 :(得分:-1)
在html中
<a href="http://example.com?test=<?php $var[0][1] ?>">click me</a>
如果你在php echo中传递参数。
echo "http://example.com?test=".$var[0][1];