12 2009 档案
摘要:在Zend Framework中创建视图(view)主要有两种方法:a、通过在index.php文件中为Zend_Controller_Front实例对象添加VeiwRenderer参数,并将其设置为true,如下图。b、通过在index.php文件中为Zend_Controller_Front实例对象添加noVeiwRenderer参数,并将其设置为true,在Controller中进行创建。本...
阅读全文
摘要:目的:介绍IteratorAggregate,Countable,ArrayAccess当一个类内部维护或封装着一个数组,我们可以通过IteratorAggregate,Countable,ArrayAccess这3个接口来进行相应的操作。通过IteratorAggregate接口,外部可以对该数组进行迭代操作;通过Countable接口外部可以知道该数组含有多少对象;通过ArrayAccess可...
阅读全文