当前位置: 首页>>代码示例>>PHP>>正文


PHP Collection::toJson方法代码示例

本文整理汇总了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());
 }
开发者ID:MixedBerries,项目名称:blueberry-core,代码行数:20,代码来源:FileController.php

示例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);
 }
开发者ID:jaffle-be,项目名称:framework,代码行数:10,代码来源:SimpleTranslationCollection.php


注:本文中的Illuminate\Database\Eloquent\Collection::toJson方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。