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

PHP 常數(shù)數(shù)組

在 PHP 5.6 中僅能透過 const 定義常數(shù)數(shù)組,PHP 7 可以透過 define() 來定義。

實例

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

print(sites[1]);
?>

以上程式執(zhí)行輸出結(jié)果為:

php
繼續(xù)學(xué)習(xí)
||
<?php // 使用 define 函數(shù)來定義數(shù)組 define('sites', [ 'Google', 'php', 'Taobao' ]); print(sites[1]); ?>
提交重置程式碼