[PHP網路編程從入門到精通]-3-1.php:PHP常數定義與使用

[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>


 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *