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


PHP ArrayIterator serialize()用法及代碼示例


ArrayIterator::serialize()函數是PHP中的內置函數,用於序列化數組迭代器。

用法:

string ArrayIterator::serialize( void )

參數:該函數不接受任何參數。


返回值:此函數返回序列化的ArrayIterator。

以下示例程序旨在說明PHP中的ArrayIterator::serialize()函數:

示例1:

<?php 
  
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array('G', 'e', 'e', 'k', 's') 
); 
  
// Serialize the element 
$serialize = $arrItr->serialize();  
  
// Display the output 
var_dump($serialize); 
  
?>
輸出:

string(81) “x:i:0;a:5:{i:0;s:1:”G”;i:1;s:1:”e”;i:2;s:1:”e”;i:3;s:1:”k”;i:4;s:1:”s”;};m:a:0:{}”

示例2:

<?php 
     
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "a" => "Geeks", 
        "b" => "for", 
        "c" => "Geeks"
    ) 
); 
  
// Append some elements 
$arrItr->append("Computer");  
$arrItr->append("Science");  
$arrItr->append("Portal");  
      
// Serialize the element 
$serialize = $arrItr->serialize();  
  
// Display the output 
var_dump($serialize); 
     
?>
輸出:

string(133) “x:i:0;a:6:{s:1:”a”;s:5:”Geeks”;s:1:”b”;s:3:”for”;s:1:”c”;s:5:”Geeks”;i:0;s:8:”Computer”;i:1;s:7:”Science”;i:2;s:6:”Portal”;};m:a:0:{}”

參考: https://www.php.net/manual/en/arrayiterator.serialize.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | ArrayIterator serialize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。