<?php
echo "echo 不需要括号.";
// 字符串可以分别作为多个参数传递,也可以
// 连接在一起作为单个参数传递
echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', "\n";
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n";
// 不添加换行符或空格;下面输出 "helloworld" 都是在一行上
echo "hello";
echo "world";
// 与上面相同
echo "hello", "world";
echo "This string spans
multiple lines. The newlines will be
output as well";
echo "This string spans\nmultiple lines. The newlines will be\noutput as well.";
// 参数可以是任何生成字符串的表达式
$foo = "example";
echo "foo is $foo"; // foo is example
$fruits = ["lemon", "orange", "banana"];
echo implode(" and ", $fruits); // lemon and orange and banana
// 非字符串表达式将被强制转换为字符串,即使使用 declare(strict_types=1) 也一样
echo 6 * 7; // 42
// 因为 echo 不像表达式,所以以下代码无效。
($some_var) ? echo 'true' : echo 'false';
// 但是,以下示例将起作用:
($some_var) ? print 'true' : print 'false'; // print 也是一个结构,但
// 它是一个有效的表达式,返回 1,
// 所以它可以在这种情况下使用。
echo $some_var ? 'true': 'false'; // 首先计算表达式,然后将其传递给 echo
?>