恩,在不知道下标的情况下,如何获取对象第一个元素的值?好像对于对象来说这玩意儿不叫下标,whatever~

foreach($obj as $prop) {
$first_prop = $prop;
break; // or exit or whatever[......]

阅读全文