2024-12-01

PHP中ThinkPHP Collection对象如何转换为标准数组?

php中thinkphp collection对象如何转换为标准数组?

在 php 中,可以通过数据库查询获取到这样的数据对象:

object(thinkcollection)#117 (1) {
  ["items":protected] => array(10) {
    [0] => array(5) {
      ["id"] => int(2)
      ["post_id"] => int(7)
      ["category_id"] => int(9)
      ["list_order"] => float(10000)
      ["status"] => int(1)
    }
    ...
  }
}
登录后复制

要将此对象转换为数组,可以使用 toarray 方法:

$data->toarray();
登录后复制

这样就能得到一个标准的 php 数组:

array(10) {
  [0] => array(5) {
    ["id"] => int(2)
    ["post_id"] => int(7)
    ["category_id"] => int(9)
    ["list_order"] => float(10000)
    ["status"] => int(1)
  }
  ...
}
登录后复制

以上就是PHP中ThinkPHP Collection对象如何转换为标准数组?的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/1122587.html

发表回复

Your email address will not be published. Required fields are marked *