🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 概述 固定长度的数组,超出则抛异常 ## 实例 ``` <?php $arr = new SplFixedArray(3); $arr[0]='a'; $arr[1]='a'; $arr[2]='a'; $arr[3]='a'; // Uncaught exception 'RuntimeException' with message 'Index invalid or out of range' //$arr[]='c';// Uncaught exception 'RuntimeException' with message 'Index invalid or out of range' ```