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


PHP App::create方法代码示例

本文整理汇总了PHP中app\App::create方法的典型用法代码示例。如果您正苦于以下问题:PHP App::create方法的具体用法?PHP App::create怎么用?PHP App::create使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\App的用法示例。


在下文中一共展示了App::create方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: run

 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $cid = ['社交·娱乐' => 1, '射击·竞速' => 2, '冒险·益智' => 3, '场景·体验' => 4, '其他' => 5];
     /*        //3个平台
             $platforms = [
             	'android', 'ios', 'oculus'
             ];
             foreach ($platforms as $platform) {
             	for($i =1; $i<=5; $i++){
             		for($j=1; $j<=20; $j++){
             			App::create([
             				'ids' => uniqid(),
             				'name_chn' => '星际战争',
             				'name_eng' => 'Insectizide Wars VR',
             				'description' => '《星际战争》是一款ios虚拟现实格斗射击游戏。一个巨大的不明飞行物接近太阳系,并且飞快的像地球靠近,地球为了避免比撞击到,所以做出了相应的对策,当发现这个不明飞行并不是自然现象的时候,地球人类派出了宇宙飞船,进行保卫地球计划。喜欢星际题材的玩家快快下载体验吧!',
             				'platform' => $platform,
             				'operation' => 'head',
             				'cid' => $i,
             			]);
             		}
             	}
             }*/
     //1
     $file = file_get_contents('http://101.69.251.189:2183/android.json');
     $c = json_decode($file, true);
     foreach ($c as $v) {
         //$type = str_replace('.', '', $v['type']);
         if ($v['name'] == $v['nameE']) {
             $v['name'] = '';
         }
         App::create(['ids' => $v['id'], 'name_chn' => $v['name'], 'name_eng' => $v['nameE'], 'thumb' => $v['img'], 'description' => $v['info'], 'platform' => 'android', 'operation' => 'head', 'source' => $v['src'], 'cid' => isset($cid[$v['type']]) ? $cid[$v['type']] : 5]);
     }
     //2
     $file = file_get_contents('http://101.69.251.189:2183/ios.json');
     $c = json_decode($file, true);
     foreach ($c as $v) {
         //$type = str_replace('.', '', $v['type']);
         if ($v['name'] == $v['nameE']) {
             $v['name'] = '';
         }
         if (isset($v['src'])) {
             App::create(['ids' => $v['id'], 'name_chn' => $v['name'], 'name_eng' => $v['nameE'], 'thumb' => $v['img'], 'description' => $v['info'], 'platform' => 'ios', 'operation' => 'head', 'source' => $v['src'], 'cid' => isset($cid[$v['type']]) ? $cid[$v['type']] : 5]);
         }
     }
     //3
     $file = file_get_contents('http://101.69.251.189:2183/oculus.json');
     $c = json_decode($file, true);
     foreach ($c as $v) {
         //$type = str_replace('.', '', $v['type']);
         if ($v['name'] == $v['nameE']) {
             $v['name'] = '';
         }
         App::create(['ids' => $v['id'], 'name_chn' => $v['name'], 'name_eng' => $v['nameE'], 'thumb' => $v['img'], 'description' => $v['info'], 'platform' => 'oculus', 'operation' => 'head', 'source' => $v['src'], 'cid' => isset($cid[$v['type']]) ? $cid[$v['type']] : 5]);
     }
 }
开发者ID:yanguanglan,项目名称:appstore,代码行数:60,代码来源:AppTableSeeder.php


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