print
echo(),print(),print_r()的区别?

echo和print不是一个函数,是一个语言结构;print(string$arg)只有一个参数;echoarg1,arg2可以输出多个参数,返回void;echo和print只能打印出string,不能打印出...