PHP | SplFixedArray __construct()函数
SplFixedArray::__construct()函数是PHP中的一个内置函数,用于构造一个新的固定大小的数组。
句法:
void SplFixedArray::__construct( $size )
参数:此函数接受单个参数$size ,它指定数组的大小。
返回值:此函数不返回任何值。
下面的程序说明了PHP中的 SplFixedArray::__construct()函数:
方案一:
输出:
NULL
string(13) "GeeksforGeeks"
方案二:
输出:
NULL
NULL
int(5)
NULL
string(3) "gfg"
string(5) "Geeks"
NULL
string(13) "GeeksforGeeks"
参考: https://www. PHP.net/manual/en/splfixedarray.construct。 PHP