sodasix

1516 经验值

生成一个 controller 基类, 然后其他的controller 继承这个 controller, 在基类中 \View::share('domain', 'test')

view 中 { $domain }

webupload吧,
其次压缩的话, 存 JS 应该只能 canvas 实现吧, 不过2M 的图片...效率想想也是醉了....

我去吃个饭的时间, 发生了什么...

The Response content must be a string or object implementing __toString()
相应必须是字符串或者对象类型能被 ToString 的

  • -我只想买个 使用Laravel开发社区 怎么办- -

@woailuosj

function bcrypt($value, $options = array()){
        return app('hash')->make($value, $options);
}

文件在这里 vendor/laravel/framework/src/Illuminate/Foundation/helpers.php
你可以试着追踪回去看看..

理论上用户密码是不能被解密的, 没试过,
如果使用默认的auth,
重写下App\Services\Registrar

public function create(array $data)
    {
        return User::create([
            'name' => $data['name'],
            'email' => $data['email'],
            'password' => bcrypt($data['password']),
        ]);
    }

first() 没有查询到的话, 返回的应该是 null 吧.

  • -其实, 我一般都是

Model::where('filed', value)->toSql();