fromJSON
Последнее обновление Feb 8th, 2020 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn morexPDOObject::fromJSON()¶
Устанавливает поля объекта из строки объекта JSON.
Синтаксис¶
API Docs: https://api.modx.com/revolution/2.2/db_core_xpdo_om_xpdoobject.class.html
void fromJSON (
string $jsonSource,
[string $keyPrefix = ''],
[boolean $setPrimaryKeys = false],
[boolean $rawValues = false],
[boolean $adhocValues = false]
)
Пример¶
$str = '{"name":"Sirius","email":"Black"}';
$object->fromJSON($str);
echo $object->get('name').' '.$object->get('email');
// prints "Sirius Black"
Смотрите также¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more