<?php
$string = 'cup';
$name = 'coffee';
$str = 'This is a $string with my $name in it.';
echo $str. "\n";
eval("\$str = \"$str\";");//如何理解这行代码,分号存在的意义?
echo $str. "\n";
?>
___
添加回答
举报
0/150
提交
取消