我想知道将 PHP 对象存储到数据库的最佳格式是什么,一个对象有多个参数和方法,XML 或二进制或其他格式?
例如 :
$me = new Person();
$me->code= '007';
$me->name='antoine';
$me->store(); //this object is now stored into postgresql in Binary format or XML or ... you tell me !
//after few days :
$object = $database->retrievePersonByCode('007');
echo "my name is".$object->name;
怎么做 ?