當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。