本文整理汇总了PHP中Illuminate\Database\Eloquent\Collection::toJson方法的典型用法代码示例。如果您正苦于以下问题:PHP Collection::toJson方法的具体用法?PHP Collection::toJson怎么用?PHP Collection::toJson使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Database\Eloquent\Collection
的用法示例。
在下文中一共展示了Collection::toJson方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: create
protected function create($request, $response, $args)
{
$data = $request->getParsedBody();
$uri = $request->getUri();
$files = $request->getUploadedFiles();
array_walk_recursive($files, function ($v, $k) use($files) {
if ($v instanceof UploadedFile) {
$files[] = $v;
}
});
$collection = new Collection();
foreach ($files as $file) {
if ($file->getError() === UPLOAD_ERR_OK) {
$f = File::create(['name' => ucfirst($file->getClientFilename()), 'filename' => $file->getClientFilename(), 'filetype' => $file->getClientMediaType(), 'filesize' => $file->getSize(), 'url' => $uri->getScheme() . '://' . $uri->getHost() . '/media/' . $file->getClientFilename(), 'download' => false]);
$collection->push($f);
$file->moveTo($this->settings['mediaDir'] . $file->getClientFilename());
}
}
return $response->write($collection->toJson());
}
示例2: toJson
/**
* Get the collection of items as JSON.
*
* @param int $options
* @return string
*/
public function toJson($options = 0)
{
return parent::toJson(JSON_FORCE_OBJECT);
}