dqf67993 2014-06-13 14:02
浏览 267
已采纳

语法错误,意外''类型''<T_CONSTANT_ENCAPSED_STRING> [关闭]

As the title says, I get the error:

Syntax error, unexpected ´´usertype´´ expecting ...... \AccountTableSeeder.php on line:12

My AccountTableSeeder:

<?php

class AccountTableSeeder extends Seeder {

    public function run()
    {
        DB::table('account')->delete();
        User::create(array(
            'name' => 'admin2',
            'passwd' => Hash::make('0x,admin')
            'usertype' => '1'
            'money' => '1000'
            'id' => '1'
            'email' => 'admin@example.com'
            'isTest' => ''
            'secretquestion' => ''
            'secretanswer' => ''
            'registerip' => '192.168.0.0'
            'regdate' => '2014-13-06 15:07:00.333'
        ));
    }

}

My create_account_table

    <?php

    use Illuminate\Database\Schema\Blueprint;
    use Illuminate\Database\Migrations\Migration;

    class CreateAccountTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('account', function(Blueprint $table)
        {
            $table->char('name', 16)->unique();
            $table->string('passwd');
            $table->integer('usertype');
            $table->integer('money');
            $table->increments('id');
            $table->string('email');
            $table->tinyInteger('isTest');
            $table->mediumText('secretquestion');
            $table->mediumText('secretanswer');
            $table->text('registerip');
            $table->dateTime('regdate');
            $table->unique( array('email','name','id') );
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::create('account', function(Blueprint $table)
        {
            //
        });
    }

}

I tried to use the commane: php artisan db:seed I hope you can help me :)

  • 写回答

1条回答 默认 最新

  • duancuan6466 2014-06-13 14:03
    关注

    You're missing commas after your array values:

    public function run()
    {
        DB::table('account')->delete();
        User::create(array(
            'name' => 'admin2',
            'passwd' => Hash::make('0x,admin'),
            'usertype' => '1',
            'money' => '1000',
            'id' => '1',
            'email' => 'admin@example.com',
            'isTest' => '',
            'secretquestion' => '',
            'secretanswer' => '',
            'registerip' => '192.168.0.0',
            'regdate' => '2014-13-06 15:07:00.333'
        ));
    }
    

    FYI, a decent IDE would catch this for you and alert you of your error immediately.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度