PEAR:the PHP Extension and Application Repository PHP扩展与应用库
从4.04开始,随着PHP核心一起被分发。
SPL:Standard PHP Library PHP标准库
从5.0开始,随着PHP核心一起被分发。
使用示例:
从4.04开始,随着PHP核心一起被分发。
SPL:Standard PHP Library PHP标准库
从5.0开始,随着PHP核心一起被分发。
使用示例:
<?php
$arr = array('php', 'spl', 'pear');
$arrIt = new ArrayIterator($arr);
foreach($arrIt as $item){
echo "<p>{$item}</p>";
}
// 输出
// php
// spl
// pear
?>

1312

被折叠的 条评论
为什么被折叠?



