laravel框架操作數據庫

      

 

<?php

namespace App\Http\Controllers;
use Illuminate\Support\Facades\DB;
class StudentController extends Controller
{
	
	public function test1()
	{
		//查詢
		/*$result = DB::SELECT('SELECT * FROM WEB_USER WHERE USERID = 1');
		dd($result);*/
		//插入
		/*$bool = DB::insert('insert into web_user(name,age) values(?,?)',['sean',18]);
		print_r($bool);*/
		//更新
		/*$bool = DB::insert('update web_user set age = ? where userid = ?',[18,1]);
		print_r($bool);*/
		$bool = DB::delete('delete from web_user where userid = 112');
		var_dump($bool);
	}
}

注意:一定要添加  use Illuminate\Support\Facades\DB;

dd()打印數組對象 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章