虽然我相信你最好为你的每个类编写一个适当的导出/编码函数(它会从私有和公共值构造一个公共对象只是为了编码 - 你可能非常聪明并使用 php 的反射能力) - 相反- 您可以使用以下代码:
/// example class B
class TestB {
private $value = 123;
}
/// example class A
class TestA {
private $prop;
public function __construct(){
$this->prop = new TestB();
}
}
function json_encode_private($obj){
/// export the variable to find the privates
$exp = var_export($obj, true);
/// get rid of the __set_state that only works 5.1+
$exp = preg_replace('/[a-z0-9_]+\:\:__set_state\(/i','((object)', $exp);
/// rebuild the object
eval('$enc = json_encode('.$exp.');');
/// return the encoded value
return $enc;
}
echo json_encode_private(new TestA());
/// {"prop":{"value":123}}
所以上面应该可以工作,但我不建议eval
在 php 中的任何地方使用 - 只是因为我总是在远处安静地听到警铃:)
更新
只是想到了什么可能会使它更安全一些,而不是使用eval
你可以使用create_function
的东西来限制它的一些创造能力,或者至少限制这些能力的范围......
function json_encode_private($obj){
$exp = var_export($obj, true);
$exp = preg_replace('/[a-z0-9_]+\:\:__set_state\(/i','((object)', $exp);
$enc = create_function('','return json_encode('.$exp.');');
return $enc();
}
更新 2
有机会尝试另一种将具有私有属性的对象转换为具有公共属性的对象的方法 - 仅使用一个简单的函数(并且没有 eval)。以下内容需要在您使用的任何版本的 PHP 上进行测试,因为它的行为 - 再次 - 可能不可靠......由于转换后的私有属性中的奇怪前缀(参见代码中的注释)。\0
Class Name
\0
有关这种奇怪的前缀行为的更多信息:http:
//uk3.php.net/language.types.array.php#language.types.array.casting
无论如何,所以使用测试类:
class RandomClass {
private $var = 123;
private $obj;
public function __construct(){
$this->obj = (object) null;
$this->obj->time = time();
}
}
我们可以使用以下函数将其转换为公共对象:
function private_to_public( $a ){
/// grab our class, convert our object to array, build our return obj
$c = get_class( $a ); $b = (array) $a; $d = (object) null;
/// step each property in the array and move over to the object
/// usually this would be as simple as casting to an object, however
/// my version of php (5.3) seems to do strange things to private
/// properties when casting to an array... hence the code below:
foreach( $b as $k => $v ){
/// for some reason private methods are prefixed with a \0 character
/// and then the classname, followed by \0 before the actual key value.
/// This must be some kind of internal protection causing private
/// properties to be ignored. \0 is used by some languges to terminate
/// strings (not php though, as far as i'm aware).
if ( ord($k{0}) === 0 ) {
/// trim off the prefixed weirdnesss..?!
$e = substr($k, 1 + strlen($c) + 1);
/// unset the $k var first because it will remember the \0 even
/// if other values are assigned to it later on....?!
unset($k); $k = $e;
}
/// so if we have a key, either public or private - set our value on
/// the destination object.
if ( $k !== '' && $k !== NULL && $k !== FALSE ) {
$d->{$k} = $v;
}
}
return $d;
}
所以如果我们把它们放在一起:
$a = new RandomClass();
echo json_encode( private_to_public( $a ) );
/// {"var":123,"obj":{"time":1349777323}}
同样,您最好/最可靠的选择是为每个类定制您的转换方法,或者使用Class Reflection创建某种通用解决方案,但后者比 StackOverflow 答案更复杂,更复杂......至少与我有多少空闲时间;)
更多信息
当尝试从任何地方访问对象时,上面的代码将起作用,实现它的原因是因为我的第一次尝试显然是使用以下内容:
echo json_encode( get_object_vars($a) );
/// you will get {} which isn't what you expect
似乎如果你想get_object_vars
使用它,你必须从可以访问所有属性的上下文中使用它,即从你公开的类内部:
public function getAllProperties(){
return get_object_vars( $this );
}
所以,想象一下我们将上面的内容添加到 RandomClass 定义中:
echo json_encode( $a->getAllProperties() );
/// you will get {"var":123,"obj":{"time":1349777323}}
这是可行的,因为类的成员可以访问类的所有公共或私有属性……正如我所说,以这种方式工作要优越得多;优越,但并非总是可能的。