Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用print_r($arr)して、次を出力します。
print_r($arr)
stdClass Object ( [uid] => 1 [status] => complete [order_id] => 430 )
これらの値にアクセスするにはどうすればよいですか?
私が試してみました:
print $arr->order_id;
しかし、それは何も返しません。
<?php $a = array ( "uid" => 1, "status" => "complete", "order_id" => 430, ); $a = (object)$a; echo $a->order_id; // 430
これはうまくいきます。