我想将一个数组传递到函数中,并在该函数中进行迭代。但我希望能够更改单个条目显示的方式。
假设我有一个复杂数组:
$items = array($one, $two, $three);
现在我正在做:
$entries = array();
foreach($items as $item) {
$entries[] = create_li($item["title"], pretty_print($item["date"]));
}
$list = wrap_in_ul($entries);
我希望在一行中完成上述操作。
$list = create_ul($items, $item["title"], pretty_print($item["date"]));
有没有可能在PHP4中实现这个?创意一些!