ホームページ > バックエンド開発 > PHPチュートリアル > 能不能给讲讲Segmentfault 用的框架里的Data模式是怎么把数组转换成对象的?

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

WBOY
リリース: 2016-06-06 20:51:12
オリジナル
985 人が閲覧しました

如:

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

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

<?php foreach($questions as $q): ?>
<h2><a href="<?php%20%24q->url();%20?>"><?php $q->title(); ?></a></h2>
<p><?php $q->summary(100, '...'); ?></p>
<?php endforeach; ?>
ログイン後にコピー
ログイン後にコピー

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

回复内容:

如:

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

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

<?php foreach($questions as $q): ?>
<h2><a href="<?php%20%24q->url();%20?>"><?php $q->title(); ?></a></h2>
<p><?php $q->summary(100, '...'); ?></p>
<?php endforeach; ?>
ログイン後にコピー
ログイン後にコピー

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

Class XXX implements Iterator, ArrayAccess, Countable{}

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

関連ラベル:
php
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート