SplFixedArray::__construct()函数是PHP中的内置函数,用于构造新的固定大小的数组。
用法:
void SplFixedArray::__construct( $size )
参数:该函数接受单个参数$size,该参数指定数组的大小。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的SplFixedArray::__construct()函数:
程序1:
<?php
// Create new fixed array of size 2
$gfg = new SplFixedArray(2);
$gfg[1] = "GeeksforGeeks";
// Print Result
var_dump($gfg[0]);
var_dump($gfg[1]);
?>
输出:
NULL string(13) "GeeksforGeeks"
程序2:
<?php
// Create new fixed array of size 8
$gfg = new SplFixedArray(8);
$gfg[2] = 5;
$gfg[4] = "gfg";
$gfg[5] = "Geeks";
$gfg[7] = "GeeksforGeeks";
// Iterate array and print its values
foreach( $gfg as $i ) {
var_dump($i);
}
?>
输出:
NULL NULL int(5) NULL string(3) "gfg" string(5) "Geeks" NULL string(13) "GeeksforGeeks"
参考: https://www.php.net/manual/en/splfixedarray.construct.php
相关用法
- PHP SplFixedArray next()用法及代码示例
- PHP SplFixedArray key()用法及代码示例
- PHP SplFixedArray offsetUnset()用法及代码示例
- PHP SplFixedArray offsetGet()用法及代码示例
- PHP SplFixedArray valid()用法及代码示例
- PHP SplFixedArray toArray()用法及代码示例
- PHP SplFixedArray rewind()用法及代码示例
- PHP SplFixedArray offsetExists()用法及代码示例
- PHP SplFixedArray setSize()用法及代码示例
- PHP SplFixedArray current()用法及代码示例
- PHP SplFixedArray getSize()用法及代码示例
- PHP SplFixedArray count()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFixedArray __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。