// 区分大小写的常量名define("GREETING", "Welcome to W3Schools.com!");echo GREETING; // Welcome to W3Schools.com!echo '<br>';echo greeting; // 输出 "greeting"// 不区分大小写的常量名define("GREETING", "Welcome to W3Schools.com!", true);echo greeting; // Welcome to W3Schools.com!
define("cars", ["Alfa Romeo","BMW","Toyota"]);echo cars[0]; //Alfa Romeo
define("GREETING", "Welcome to W3Schools.com!");function myTest() {echo GREETING;}myTest(); //Welcome to W3Schools.com!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号