Heim > Artikel > Backend-Entwicklung > phalcon有没有类似TP fetch()的函数
TP 中fetch()函数,可以把输出内容读到
phalcon有没有这样的函数,把要输出的内容存到字符串中
TP 中fetch()函数,可以把输出内容读到
phalcon有没有这样的函数,把要输出的内容存到字符串中
<code>$view->render(...); $view->getContent();</code>
这样可以吗?
<code>$users = User::find(); foreach($users as $user){ print_r($user->toArray()); }</code>