本文整理汇总了PHP中Illuminate\Support\Facades\Request::query方法的典型用法代码示例。如果您正苦于以下问题:PHP Request::query方法的具体用法?PHP Request::query怎么用?PHP Request::query使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Support\Facades\Request
的用法示例。
在下文中一共展示了Request::query方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getExceptionData
private function getExceptionData($exception)
{
$data = [];
$data['host'] = Request::server('HTTP_HOST');
$data['method'] = Request::method();
$data['fullUrl'] = Request::fullUrl();
if (php_sapi_name() === 'cli') {
$data['host'] = parse_url(config('app.url'), PHP_URL_HOST);
$data['method'] = 'CLI';
}
$data['exception'] = $exception->getMessage();
$data['error'] = $exception->getTraceAsString();
$data['line'] = $exception->getLine();
$data['file'] = $exception->getFile();
$data['class'] = get_class($exception);
$data['storage'] = array('SERVER' => Request::server(), 'GET' => Request::query(), 'POST' => $_POST, 'FILE' => Request::file(), 'OLD' => Request::hasSession() ? Request::old() : [], 'COOKIE' => Request::cookie(), 'SESSION' => Request::hasSession() ? Session::all() : [], 'HEADERS' => Request::header());
$data['storage'] = array_filter($data['storage']);
$count = $this->config['count'];
$data['exegutor'] = [];
$data['file_lines'] = [];
$file = new SplFileObject($data['file']);
for ($i = -1 * abs($count); $i <= abs($count); $i++) {
list($line, $exegutorLine) = $this->getLineInfo($file, $data['line'], $i);
$data['exegutor'][] = $exegutorLine;
$data['file_lines'][$data['line'] + $i] = $line;
}
// to make Symfony exception more readable
if ($data['class'] == 'Symfony\\Component\\Debug\\Exception\\FatalErrorException') {
preg_match("~^(.+)' in ~", $data['exception'], $matches);
if (isset($matches[1])) {
$data['exception'] = $matches[1];
}
}
return $data;
}
示例2: create
/**
* create Business
*
* @return Response Rendered view of Business creation form
*/
public function create()
{
$this->log->info(__METHOD__);
$plan = Request::query('plan') ?: 'free';
$this->log->info(" plan:{$plan}");
$timezone = $this->guessTimezone(null);
$categories = $this->listCategories();
$business = new Business();
return view('manager.businesses.create', compact('business', 'timezone', 'categories', 'plan'));
}
示例3: create
/**
* create Business
*
* @return Response Rendered view of Business creation form
*/
public function create()
{
$plan = Request::query('plan') ?: 'free';
$this->log->info("Manager\\BusinessController: create: plan:{$plan}");
$location = GeoIP::getLocation();
$timezone = $location['timezone'];
$this->log->info("Manager\\BusinessController: create: timezone:{$timezone} location:" . serialize($location));
$categories = Category::lists('slug', 'id')->transform(function ($item, $key) {
return trans('app.business.category.' . $item);
});
Flash::success(trans('manager.businesses.msg.create.success', ['plan' => trans("pricing.plan.{$plan}.name")]));
return view('manager.businesses.create', compact('timezone', 'categories', 'plan'));
}
示例4: sortableTh
public static function sortableTh($fieldName, $route, $label = null)
{
$output = "<th>";
$sortType = "asc";
if (Request::input("sort") == $fieldName and Request::input("sortType") == "asc") {
$sortType = "desc";
}
$params = array_merge(Request::query(), ['sort' => $fieldName, 'sortType' => $sortType]);
$href = route($route, $params);
$output .= "<a href='{$href}'>";
$label = $label ?: ucwords(str_replace("_", " ", $fieldName));
$output .= $label;
if (Request::input("sort") == $fieldName) {
$output .= " <i class='fa fa-sort-alpha-" . Request::input("sortType") . "'></i>";
}
$output .= "</a>";
$output .= "</th>";
return $output;
}
示例5: get
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Redis;
get('/', function () {
// $data = [
// 'event' => 'UserSignedUp',
// 'data' => [
// 'username' => 'JohnDoe'
// ]
// ];
// Redis::publish('test-channel', json_encode($data));
event(new \App\Events\UserSignedUp(\Illuminate\Support\Facades\Request::query('name')));
return view('welcome');
});
示例6: reset
/**
* Show the form for finalizing a password reset.
*
* @return \Illuminate\View\View
*/
public function reset()
{
$token = Request::query('token') ?: Request::old('token');
if (!$token) {
return $this->redirect('login');
}
return $this->view('c::auth.reset', ['formAction' => $this->url('attemptReset'), 'token' => $token]);
}
示例7: _getPostInput
/**
* @return array
*/
protected function _getPostInput()
{
$input = Request::all();
$get = Request::query();
return array_diff($input, $get);
}