php从对象中删除元素(stdClass)

时间:2015-07-21 18:54:45

标签: php

我试图删除一个数组中的某些元素,这些元素来自于类中函数的提取:

public function isChecked($db, $table, $id, $row_id)
{
    $answer = $db->query("SELECT * FROM $table WHERE $row_id =  $id")->fetch(); 

    var_dump($answer);
}

我得到以下结果:

object(stdClass)#2 (5) { ["act_prim"]=> string(2) "12" ["act_id"]=>string(1) "1" ["a"]=> NULL ["b"]=> string(1) "1" ["c"]=> string(1) "1" } 

我想从数组中删除2个第一个元素(“act_prim”和“act_id”)。但到目前为止,我用任何方法都能成功。

感谢您的帮助。

0 个答案:

没有答案