终止页面语句执行,将exit前边的东西输出到浏览器
<?
echo "hello";
exit();
?>
world!
这样只显示hello

解决方案 »

  1.   

    PHP4中文手册的解释是:
    本函式直接结束 PHP 程式 (Script)。不需输入参数,亦无传回值。PHP4.3手册的解释是:
    exit
    (PHP 3, PHP 4 )exit -- Output a message and terminate the current script
    Description
    void exit ( [string status])void exit ( int status)
    Note: This is not a real function, but a language construct. The exit() function terminates execution of the script. It prints status just before exiting. If status is an integer, that value will also be used as the exit status. Exit statuses should be in the range 1 to 254, the exit status 255 is reserved by PHP and shall not be used. Note: The current CVS version does NOT print the status if it is an integer. Note: The die() function is an alias for exit().