解读PHP开源项目中列表和hook方法:while(has_items()): thme_ite();和apply_filters
在wordpress,lilina等开源项目中,常常会看到一些莫名的代码,来无影去无踪,看上去很有意味,特地拿来分析分析,看看一般的作法。
part 1 列表 循环显示
先看代码:
<?php
$num = 0;
if(has_items()) {
while(has_items()): the_item();
}
?>
以上代码,出自某开源项目。。。
再进入the_item()函数内部,可以看到一个关键的函数:
* Returns the current item
*
* @since 1.0
*
* @return bool|stdClass False if item doesn’t exist, otherwise returns the specified item
*/
public function current_item() {
$this->previous_item = $this->current_item;
$this->current_item = ”;$item = each($this->items);
$item = $item['value'];
if(!$item)
return false;$this->current_item = $item;
$this->current_feed = $item->feed;return $item;
}
这个关键的函数是each(),来看手册:
each
each - 返回数组中当前的键/值对并将数组指针向前移动一步
说明
array each ( array &array )
返回 array 数组中当前指针位置的键/值对并向前移动数组指针。键值对被返回为四个单元的数组,键名为 0,1,key 和 value。单元 0 和 key 包含有数组单元的键名,1 和 value 包含有数据。
如果内部指针越过了数组的末端,则 each() 返回 FALSE。
综合来看,其实就是一个做了一个游标一样的模型,利用each来操作一个数组或者相似的结构,每次在显示的时候,都有对数据数组的本身操作,而while里的has_item,只是作简单的判断有无而已。
part2 hook
第二种情况,是一个叫apply_filters的函数的实现。先看代码:
function the_item() {
global $lilina_items, $item;$item = apply_filters(’the_item’, $lilina_items->current_item());
}
这是lilina里的一个函数,要看的是这个apply_filters方法,有一个简单的例子:
function example_hook($string, $arg1, $arg2)
{
//Do stuff
return $string;
}
$value = apply_filters(’example_hook’, ‘filter me’, ‘arg1′, ‘arg2′);
apply_filters里面最关键的一个函数:
call_user_func_array
call_user_func_array - Call a user function given with an array of parameters
Description
mixed call_user_func_array ( callback function, array param_arr )
Call a user defined function given by function, with the parameters in param_arr.
其实这些渐渐被遗忘的函数,在高手们的使用下,对项目化的开发很有优势,随手记之。
建议继续学习:
- SVN Hook造成SVN提交速度慢的问题 (阅读:5204)
- Apache2中俩种设置PHP的异同 (阅读:5273)
- 如何hook一个系统调用 (阅读:1063)
- IOS安全—阻止tweak注入hook api (阅读:920)
扫一扫订阅我的微信号:IT技术博客大学习
- 作者:cc0cc 来源: 五四陈科学院
- 标签: hook
- 发布时间:2010-02-09 08:55:53
- [66] Go Reflect 性能
- [65] Oracle MTS模式下 进程地址与会话信
- [64] 如何拿下简短的域名
- [59] android 开发入门
- [59] IOS安全–浅谈关于IOS加固的几种方法
- [58] 图书馆的世界纪录
- [58] 【社会化设计】自我(self)部分――欢迎区
- [53] 视觉调整-设计师 vs. 逻辑
- [47] 界面设计速成
- [46] 读书笔记-壹百度:百度十年千倍的29条法则