[PHP網路編程從入門到精通]-3-1.php:PHP常數定義與使用
[PHP網路編程從入門到精通]-3-1.php:PHP常數定義與使用
<html> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"> <title>3-1.php:PHP常數定義與使用</title> </head> <body> <?php //PHP常數定義語法:define("name","value") header("Content-Type:text/html; charset=utf-8"); define("STANDARD_H","Hello World"); echo STANDARD_H; ?> </body> </html>