当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP SplFixedArray __construct()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFixedArray __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。