そのため、新しい JsonSerializable Interface を見つけたときに、PHPオブジェクトをJSONにシリアル化する方法について php.net をさまよっていました。ただし、PHPPHP> = 5.4のみで、5.3.x環境で実行しています。
この種の機能はどのようにして達成されますかPHP <5.4?
私はまだJSONを使ったことがありませんが、アプリケーションのAPIレイヤーをサポートしようとしており、データオブジェクト(ビューに送信される)をJSONにダンプします完璧です。
オブジェクトを直接シリアル化しようとすると、空のJSON文字列が返されます。これは、json_encode()
がオブジェクトをどうするかわからないことを前提としているためです。オブジェクトを再帰的に配列に縮小してからthatをエンコードする必要がありますか?
$data = new Mf_Data();
$data->foo->bar['hello'] = 'world';
echo json_encode($data)
は空のオブジェクトを生成します:
{}
var_dump($data)
ただし、期待どおりに動作します:
object(Mf_Data)#1 (5) {
["_values":"Mf_Data":private]=>
array(0) {
}
["_children":"Mf_Data":private]=>
array(1) {
[0]=>
array(1) {
["foo"]=>
object(Mf_Data)#2 (5) {
["_values":"Mf_Data":private]=>
array(0) {
}
["_children":"Mf_Data":private]=>
array(1) {
[0]=>
array(1) {
["bar"]=>
object(Mf_Data)#3 (5) {
["_values":"Mf_Data":private]=>
array(1) {
[0]=>
array(1) {
["hello"]=>
string(5) "world"
}
}
["_children":"Mf_Data":private]=>
array(0) {
}
["_parent":"Mf_Data":private]=>
*RECURSION*
["_key":"Mf_Data":private]=>
string(3) "bar"
["_index":"Mf_Data":private]=>
int(0)
}
}
}
["_parent":"Mf_Data":private]=>
*RECURSION*
["_key":"Mf_Data":private]=>
string(3) "foo"
["_index":"Mf_Data":private]=>
int(0)
}
}
}
["_parent":"Mf_Data":private]=>
NULL
["_key":"Mf_Data":private]=>
NULL
["_index":"Mf_Data":private]=>
int(0)
}
これが、Mf_Data
クラス用に考案したtoArray()
関数です。
public function toArray()
{
$array = (array) $this;
array_walk_recursive($array, function (&$property) {
if ($property instanceof Mf_Data) {
$property = $property->toArray();
}
});
return $array;
}
ただし、Mf_Data
オブジェクトには親(含む)オブジェクトへの参照もあるため、再帰で失敗します。 _parent
参照を削除すると、チャームのように機能します。
ただフォローアップするために、私が行った複雑なツリーノードオブジェクトを変換する最後の関数は次のとおりです。
// class name - Mf_Data
// exlcuded properties - $_parent, $_index
public function toArray()
{
$array = get_object_vars($this);
unset($array['_parent'], $array['_index']);
array_walk_recursive($array, function (&$property) {
if (is_object($property) && method_exists($property, 'toArray')) {
$property = $property->toArray();
}
});
return $array;
}
実装のビットクリーナーで、私は再びフォローアップしています。 instanceof
チェックにインターフェースを使用することは、method_exists()
よりもずっときれいに見えます(ただし、method_exists()
はクロスカットの継承/実装)。
unset()
の使用も少々面倒で、ロジックを別のメソッドにリファクタリングする必要があるようです。ただし、この実装doesプロパティ配列をコピーする(array_diff_key
による)ので、検討が必要です。
interface ToMapInterface
{
function toMap();
function getToMapProperties();
}
class Node implements ToMapInterface
{
private $index;
private $parent;
private $values = array();
public function toMap()
{
$array = $this->getToMapProperties();
array_walk_recursive($array, function (&$value) {
if ($value instanceof ToMapInterface) {
$value = $value->toMap();
}
});
return $array;
}
public function getToMapProperties()
{
return array_diff_key(get_object_vars($this), array_flip(array(
'index', 'parent'
)));
}
}
edit:現在2016-09-24で、PHP 5.4が2012-03-01でリリースされ、サポートがended2015-09-01。それでも、この答えは賛成票を得るようです。 PHP <5.4をまだ使用している場合、セキュリティリスクを生じ、プロジェクトを危険にさらしている。 <5.4に留まる説得力のある理由がない場合、または既に5.4以上のバージョンを使用している場合は、この回答を使用せず、PHPのみを使用してください> = 5.4(または、ご存知のように、最近のもの)と実装 JsonSerializableインターフェイス
たとえば、getJsonData();
という名前の関数を定義します。これは、配列、stdClass
オブジェクト、またはプライベート/保護されたパラメーターではなく可視パラメーターを持つ他のオブジェクトを返し、json_encode($data->getJsonData());
を実行します。本質的に、5.4から関数を実装しますが、手動で呼び出します。
クラスの内部からget_object_vars()
が呼び出され、private/protected変数にアクセスできるため、次のように機能します。
function getJsonData(){
$var = get_object_vars($this);
foreach ($var as &$value) {
if (is_object($value) && method_exists($value,'getJsonData')) {
$value = $value->getJsonData();
}
}
return $var;
}
最も単純なケースでは、タイプヒンティングが機能するはずです。
$json = json_encode( (array)$object );
json_encode()
は、パブリックメンバー変数のみをエンコードします。プライベートを含める必要がある場合は、自分で行う必要があります(他の人が提案したように)
次のコードは、リフレクションを使用してジョブを実行しています。シリアル化するプロパティのゲッターがあることを前提としています
<?php
/**
* Serialize a simple PHP object into json
* Should be used for POPO that has getter methods for the relevant properties to serialize
* A property can be simple or by itself another POPO object
*
* Class CleanJsonSerializer
*/
class CleanJsonSerializer {
/**
* Local cache of a property getters per class - optimize reflection code if the same object appears several times
* @var array
*/
private $classPropertyGetters = array();
/**
* @param mixed $object
* @return string|false
*/
public function serialize($object)
{
return json_encode($this->serializeInternal($object));
}
/**
* @param $object
* @return array
*/
private function serializeInternal($object)
{
if (is_array($object)) {
$result = $this->serializeArray($object);
} elseif (is_object($object)) {
$result = $this->serializeObject($object);
} else {
$result = $object;
}
return $result;
}
/**
* @param $object
* @return \ReflectionClass
*/
private function getClassPropertyGetters($object)
{
$className = get_class($object);
if (!isset($this->classPropertyGetters[$className])) {
$reflector = new \ReflectionClass($className);
$properties = $reflector->getProperties();
$getters = array();
foreach ($properties as $property)
{
$name = $property->getName();
$getter = "get" . ucfirst($name);
try {
$reflector->getMethod($getter);
$getters[$name] = $getter;
} catch (\Exception $e) {
// if no getter for a specific property - ignore it
}
}
$this->classPropertyGetters[$className] = $getters;
}
return $this->classPropertyGetters[$className];
}
/**
* @param $object
* @return array
*/
private function serializeObject($object) {
$properties = $this->getClassPropertyGetters($object);
$data = array();
foreach ($properties as $name => $property)
{
$data[$name] = $this->serializeInternal($object->$property());
}
return $data;
}
/**
* @param $array
* @return array
*/
private function serializeArray($array)
{
$result = array();
foreach ($array as $key => $value) {
$result[$key] = $this->serializeInternal($value);
}
return $result;
}
}
PHP JsonSerializable で指定されたインターフェイスを実装するだけです。
あなたのオブジェクトタイプはカスタムなので、私はあなたのソリューションに同意する傾向があります-エンコーディングメソッド(JSONやコンテンツのシリアル化など)を使用して小さなセグメントに分割し、反対側にオブジェクトを再構築するための対応するコードがあります.
私のバージョン:
json_encode(self::toArray($ob))
実装:
private static function toArray($object) {
$reflectionClass = new \ReflectionClass($object);
$properties = $reflectionClass->getProperties();
$array = [];
foreach ($properties as $property) {
$property->setAccessible(true);
$value = $property->getValue($object);
if (is_object($value)) {
$array[$property->getName()] = self::toArray($value);
} else {
$array[$property->getName()] = $value;
}
}
return $array;
}
JsonUtils: GitHub
これを使用してみてください、これは私のためにうまくいった。
json_encode(unserialize(serialize($array)));
オブジェクトをgetメソッドで配列に変換するNiceヘルパークラスを作成しました。プロパティに依存せず、メソッドに依存します。
だから私は2つのメソッドを含む次のレビューオブジェクトを持っています:
レビュー
コメント
私が書いたスクリプトは、次のようなプロパティを持つ配列に変換します。
{
amount_reviews: 21,
reviews: [
{
subject: "In een woord top 1!",
description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet lacus quis eros venenatis, sed tincidunt mi rhoncus. Aliquam ut pharetra diam, nec lobortis dolor."
},
{
subject: "En een zwembad 2!",
description: "Maecenas et aliquet mi, a interdum mauris. Donec in egestas sem. Sed feugiat commodo maximus. Pellentesque porta consectetur commodo. Duis at finibus urna."
},
{
subject: "In een woord top 3!",
description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet lacus quis eros venenatis, sed tincidunt mi rhoncus. Aliquam ut pharetra diam, nec lobortis dolor."
},
{
subject: "En een zwembad 4!",
description: "Maecenas et aliquet mi, a interdum mauris. Donec in egestas sem. Sed feugiat commodo maximus. Pellentesque porta consectetur commodo. Duis at finibus urna."
},
{
subject: "In een woord top 5!",
description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet lacus quis eros venenatis, sed tincidunt mi rhoncus. Aliquam ut pharetra diam, nec lobortis dolor."
}
]}
ソース: オブジェクトをJSONにエンコードできる配列に変換するPHPシリアライザー
必要なことは、出力をjson_encodeでラップすることだけです。
スクリプトに関する情報: