PHP 函数 PHP 浏览器重定向 PHP 函数和参数 PHP 函数 <html> <head> <title>Writing PHP 函数</title> </head> <body> <?php /* Defining a PHP 函数 */ function writeMessage() { echo "You are really a nice person, Have a nice time!"; } /* Calling a PHP 函数 */ writeMessage(); ?> </body> </html> PHP 浏览器重定向 PHP 函数和参数