欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

能不能给讲讲Segmentfault 用的框架里的Data模式是怎么把数组转换成对象的?

程序员文章站 2024-01-14 19:11:58
...
如:
// 从model中取出数据
$questions = $this->questionModel->listQuestions();
// 将数组放入迭代器
$this->questions = new Data_Question($questions);
// 展现模板
$this->view->render('questions.php');

到View中我们就可以操作Data_Question对象了

title(); ?>

summary(100, '...'); ?>

我想知道这个Data_Question是如何实现的

回复内容:

如:

// 从model中取出数据
$questions = $this->questionModel->listQuestions();
// 将数组放入迭代器
$this->questions = new Data_Question($questions);
// 展现模板
$this->view->render('questions.php');

到View中我们就可以操作Data_Question对象了

title(); ?>

summary(100, '...'); ?>

我想知道这个Data_Question是如何实现的

Class XXX implements Iterator, ArrayAccess, Countable{}

貌似重写一下ArrayObject就可以实现,谢谢啦

相关标签: php