<script>ec(2);</script>
1、在以前的版本里面可能会说 print 需要 () ,但是 php5.2.5中已经不需要了。
echo 可以打印多个变量,print 不行
$a = "hello";
$b = "world";
echo $a,$b,"
";
echo $a.$b."
";
print $a.$b;输出:
helloworld
helloworld
helloworld
但这样就会出现编译错误:
print $a,$b;
注意:$a $b 中间的是逗号
2、单引号跟双引号的区别:
$a = "hello";
$b = "world";
echo "$a $b";输出:hello world
echo ''$a $b'';输出:$a $b
还有一点要提的是像下面这样写是可以正常输出的
$arr = array("a" => 1);
echo $arr[''a''];
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn