国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP ?? ??

PHP 5.6??? ?? ??? const?? ??? ? ???, PHP 7??? ??()? ???? ??? ? ????.

Example

<?php
// 使用 define 函數(shù)來(lái)定義數(shù)組
define('sites', [
   'Google',
   'php',
   'Taobao'
]);

print(sites[1]);
?>

? ???? ??? ?? ??? ??? ????.

php
???? ??
||
<?php // 使用 define 函數(shù)來(lái)定義數(shù)組 define('sites', [ 'Google', 'php', 'Taobao' ]); print(sites[1]); ?>