douba1498 2014-08-13 08:32
浏览 72
已采纳

定义一个stdClass对象并将数组放入其中

I have a PHP array, and I want to define an stdClass object, and put the array into it, I want something like this:

my array is:

   Array ( [0] => stdClass Object ( [subitem] => stdClass Object ( [item] => stdClass        
   Object ( [Label] => Customer Name [value] => value ) ) )

I want it to become:

   stdClass Object (
           Array ( [0] => stdClass Object ( [subitem] => stdClass Object ( [item] => 
          stdClass Object ( [Label] => Customer Name [value] => Ministry of Finance /  
          Ramallah ) ) ) 
     )

Any help?

  • 写回答

1条回答 默认 最新

  • dongwen2896 2014-08-13 08:38
    关注

    You cannot assing array to class you can assing it to class variable.

    for example

    $yourArray = array();
    $yourObject = new \stdClass();
    $yourObject->yourVar = $yourArray;
    

    But i do not know if it is what you want achieve?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部