laravel mysql 数组,Laravel 数据库查询为什么不默认返回数组形式?

ff3119ab40cfa4eef2245e8fae4e92eb.png

慕哥6287543

acceptedLaravel 4In Laravel 4, you have to call DB::getQueryLog() to get all ran queries.$queries = DB::getQueryLog();$last_query = end($queries);Or you can download a profiler package. I'd recommend barryvdh/laravel-debugbar, which is pretty neat. You can read for instructions on how to install in their repository.Laravel 3In Laravel 3, you can get the last executed query from an Eloquent model calling the static methodlast_query on the DB class.DB::last_query();This, however, requires that you enable the profiler option in application/config/database.php. Alternatively you could, as @dualed mentioned, enable the profiler option, in application/config/application.php or call DB::profile() to get all queries ran in the current request and their execution time.shareimprove this answer

你可能感兴趣的:(laravel,mysql,数组)