Yii - Richieste HTTP
Le richieste sono rappresentate dal yii\web\Request oggetto, che fornisce informazioni su intestazioni HTTP, parametri di richiesta, cookie e così via.
I metodi get() e post() parametri di richiesta di ritorno del componente richiesta.
Example -
$req = Yii::$app->request;
/*
* $get = $_GET;
*/
$get = $req->get();
/*
* if(isset($_GET['id'])) { * $id = $_GET['id']; * } else { * $id = null;
* }
*/
$id = $req->get('id');
/*
* if(isset($_GET['id'])) { * $id = $_GET['id']; * } else { * $id = 1;
* }
*/
$id = $req->get('id', 1);
/*
* $post = $_POST;
*/
$post = $req->post();
/*
* if(isset($_POST['name'])) { * $name = $_POST['name']; * } else { * $name = null;
* }
*/
$name = $req->post('name');
/*
* if(isset($_POST['name'])) { * $name = $_POST['name']; * } else { * $name = '';
* }
*/
$name = $req->post('name', '');
Step 1 - Aggiungi un file actionTestGet funzione al SiteController del modello di applicazione di base.
public function actionTestGet() {
var_dump(Yii::$app->request->get());
}
Step 2 - Adesso vai a http://localhost:8080/index.php?r=site/testget&id=1&name=tutorialspoint&message=welcome, vedrai quanto segue.
Per recuperare i parametri di altri metodi di richiesta (PATCH, DELETE, ecc.), Utilizzare il yii\web\Request::getBodyParam() metodo.
Per ottenere il metodo HTTP della richiesta corrente, utilizzare il Yii::$app→request→method proprietà.
Step 3 - Modifica il file actionTestGet funziona come mostrato nel codice seguente.
public function actionTestGet() {
$req = Yii::$app->request;
if ($req->isAjax) { echo "the request is AJAX"; } if ($req->isGet) {
echo "the request is GET";
}
if ($req->isPost) { echo "the request is POST"; } if ($req->isPut) {
echo "the request is PUT";
}
}
Step 4 - Vai a http://localhost:8080/index.php?r=site/test-get. Vedrai quanto segue.
Il componente di richiesta fornisce molte proprietà per controllare l'URL richiesto.
Step 5 - Modifica il file actionTestGet funzionare come segue.
public function actionTestGet() {
//the URL without the host
var_dump(Yii::$app->request->url); //the whole URL including the host path var_dump(Yii::$app->request->absoluteUrl);
//the host of the URL
var_dump(Yii::$app->request->hostInfo); //the part after the entry script and before the question mark var_dump(Yii::$app->request->pathInfo);
//the part after the question mark
var_dump(Yii::$app->request->queryString); //the part after the host and before the entry script var_dump(Yii::$app->request->baseUrl);
//the URL without path info and query string
var_dump(Yii::$app->request->scriptUrl); //the host name in the URL var_dump(Yii::$app->request->serverName);
//the port used by the web server
var_dump(Yii::$app->request->serverPort);
}
Step 6 - Nella barra degli indirizzi del browser web, digita http://localhost:8080/index.php?r=site/testget&id=1&name=tutorialspoint&message=welcome, vedrai quanto segue.
Step 7 - Per ottenere le informazioni sull'intestazione HTTP, puoi utilizzare il file yii\web\Request::$headersproprietà. Modifica il fileactionTestGet funzionare in questo modo.
public function actionTestGet() {
var_dump(Yii::$app->request->headers);
}
Step 8 - Se vai all'URL http://localhost:8080/index.php?r=site/testget&id=1&name=tutorialspoint&message=welcome, vedrai l'output come mostrato nel codice seguente.
Per ottenere il nome host e l'indirizzo IP della macchina client, utilizzare userHost e userIP proprietà.
Step 9 - Modifica il file actionTestGet funzionare in questo modo.
public function actionTestGet() {
var_dump(Yii::$app->request->userHost);
var_dump(Yii::$app->request->userIP);
}
Step 10 - Vai all'indirizzo http://localhost:8080/index.php?r=site/test-get e viene visualizzata la seguente schermata.