dtb81443 2015-06-08 20:45
浏览 29
已采纳

在PHP中将未知数转换为数组

I have a query that returns either an object or an array based on the number of items. If there are zero or one items being returned, then it returns the item as an object. If there are two or more items, then it returns an array of objects.

I'm wanting to do a foreach on the query result, but that is throwing an error if it is an object that is returned, rather than an array. So I've created a function that would convert an object to an array.

function to_array($unknown) {
  if (count($unknown) === 0) {
    $array=array($unknown);
  } elseif (!is_array($unknown)) {
    $array = array();
    $array[0] = $unknown;
  } else {
    $array = $unknown;
  }
  return $array;
}

It can be used by simply calling $query_array = to_array($query_return).

Is this be best way to do this? Is there a better way? Might this create any problems?

  • 写回答

2条回答 默认 最新

  • duanlu7680 2015-06-08 21:21
    关注

    I'm wanting to do a foreach on the query result, but that is throwing an error if it is an object that is returned, rather than an array.

    It seems your data source is somewhat unclear or unclean. We are talking about queries, objects and arrays. Who knows what else is possible, the more your data source evolves. Therefore, I would check the data type first and handle all possibilities.

    The gettype function gives you a good starting point. Then you can use a switch to handle all possibilities, even future PHP Modifications as below.

    For the object to array conversion, I would use the get_object_vars function instead of a simple type cast, because it is unclear to me what that type cast really would do. But the get_object_vars function is well documented.

    $type = gettype ( $unknown );
    switch ($type) {
      case "array":
        $array = $unknown;
        break;
      case "object":
        $array = get_object_vars ( $unknown );
        break;
      case "boolean":
      case "integer":
      case "double": 
      case "string":
      case "resource":
      case "NULL":
      case "unknown type":
      default: throw new Exception("Unknown data type");
    }
    
    /* Do something here with $array */
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)