<?php
$r="hello";
$$r="I am hello";
echo $hello;
?>
输出结果为: I am hello
5.流程控制语句
主要包括,if else, while,for,do while,switch. 这些和C语言都很像,基本是一致的。不多做介绍。有些不同,PHP的 elseif是一个关键字,是连在一起的,而C语言是else if。
您可能感兴趣的文章:
<?php
$r="hello";
$$r="I am hello";
echo $hello;
?>
您可能感兴趣的文章:
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:http://www.heiqu.com/2328c976501cd9f35260ce58eb3efcc1.html