Del*_*tik 17
echo 将内容输出到控制台或Web浏览器.
例:
echo "Hey, this is now showing up on your screen!";
Run Code Online (Sandbox Code Playgroud)
return 返回函数或方法末尾的值.
例:
function my_function()
{
return "Always returns this";
}
echo my_function(); // displays "Always returns this"
Run Code Online (Sandbox Code Playgroud)