我想取一个像
class Vo {
private $blah;
private $de;
public function setBlah($blah) {
$this->blah = $blah;
}
public function getBlah() {
return $this->blah;
}
public function setDe($de) {
$this->de = $de;
}
public function getDe() {
return $this->de;
}
}
在不构建它的情况下调用一个方法,该方法要么将其转换为数组,要么更好地将 JSON 构建为[{"blah" : "something set", "de" : "something set"}]
. 我只是从 Java/Jboss 返回到 PHP,在那里我可以调用对象上的方法并将其转换为 json。