laravel 怎么获取header
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel 怎么获取header相关的知识,希望对你有一定的参考价值。
参考技术A 首先确认,后台的用户表,我设计表叫做badmin,每个管理员有用户名(username),有昵称(nickname),有邮箱(email),有密码(password)这里玩个花,使用laravel的migration来建立表(实际上可以用不着使用这个工具建立表)
1 安装好最基本的laravel框架
2 创建migration文件:
./artisan migrate:make create-badmin-table
3 发现app/database/migration/下面多了一个php文件:
2014_10_19_090336_create-badmin-table.php
4 往up和down里面增加内容;
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateBadminTable extends Migration
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create(‘badmin', function($table)
$table->increments('id’);
$table->string(‘nickname', 100)->unique();
$table->string('username', 100)->unique();
$table->string('email', 100)->unique();
$table->string('password', 64);
$table->timestamps();
);
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
Schema::drop('badmin’);
参考技术B $request->header('id')
就可以取出Headers中id字段的值,字段名不区分大小写. 参考技术C Request::header();获取所有的header所有的信息 五 一 六 五 六 七 零 九 五 来此交流学习 laravel
以上是关于laravel 怎么获取header的主要内容,如果未能解决你的问题,请参考以下文章