PHP 教程 PHP 常量数组

marlin · 2022-03-06 09:15:28 · 热度: 23

PHP 5.6 中仅能通过 const 定义常量数组,PHP 7 可以通过 define() 来定义。

实例

<?php
// 使用 define 函数来定义数组
define('sites', [
   'Google',
   'Codercto',
   'Taobao'
]);

print(sites[1]);
?>

以上程序执行输出结果为:

Codercto

查看更多 PHP 7 新特性

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册