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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。