本文整理匯總了PHP中Convert::document2Json方法的典型用法代碼示例。如果您正苦於以下問題:PHP Convert::document2Json方法的具體用法?PHP Convert::document2Json怎麽用?PHP Convert::document2Json使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Convert
的用法示例。
在下文中一共展示了Convert::document2Json方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: update
/**
* Get the javascript shell of update
* @return string
*/
public static function update($collection, $newData, $oldData)
{
if ($newData !== $oldData) {
$newDataJson = Convert::document2Json($newData);
if (empty($oldData)) {
$newDataStr = Convert::Json2Str($newDataJson);
return "db.getCollection('{$collection}').insert({$newDataStr});";
} else {
$id = $oldData['_id'] . '';
$oldDataJson = Convert::document2Json($oldData);
$updateStr = self::_generateShell($newDataJson, $oldDataJson);
return "db.getCollection('{$collection}').update({'_id': ObjectId('{$id}')},{$updateStr});";
}
} else {
return "";
}
}