当前位置: 首页 > 文档资料 > PHP-X 中文文档 >

Array

优质
小牛编辑
130浏览
2023-12-01

Array类型是ZendVM底层zend_arrayHashTable的封装。提供了非常方便的数组操作API

数字索引数组

Array arr;
arr.append(1234);
arr.append(1234.56);
arr.append(false);
arr.append("hello world");

关联索引数组

Array arr;
arr.set("key1", 1234);
arr.set("key2", 1234.56);
arr.set("key3", "hello world");
arr.set("key4", true);