首页 > 代码库 > phalcon如何将查询结果集转为数组

phalcon如何将查询结果集转为数组

<?php
    $result = table::find();
    
    $resultArray = $result -> toArray();
?>

是的 就是如此简单!

本文出自 “天道酬勤” 博客,请务必保留此出处http://ivendor.blog.51cto.com/8613733/1547049

phalcon如何将查询结果集转为数组