Yii - कुकीज़ का उपयोग करना
कुकीज़ डेटा को अनुरोधों पर बनाए रखने की अनुमति देती हैं। PHP में, आप उन्हें एक्सेस कर सकते हैं$_COOKIEचर। Yii कुकी का एक वस्तु के रूप में प्रतिनिधित्व करता हैyii\web\Cookieकक्षा। इस अध्याय में, हम कुकीज़ को पढ़ने के लिए कई तरीकों का वर्णन करते हैं।
Step 1 - एक बनाएँ actionReadCookies में विधि SiteController।
public function actionReadCookies() {
// get cookies from the "request" component
$cookies = Yii::$app->request->cookies; // get the "language" cookie value // if the cookie does not exist, return "ru" as the default value $language = $cookies->getValue('language', 'ru'); // an alternative way of getting the "language" cookie value if (($cookie = $cookies->get('language')) !== null) { $language = $cookie->value; } // you may also use $cookies like an array
if (isset($cookies['language'])) { $language = $cookies['language']->value; } // check if there is a "language" cookie if ($cookies->has('language')) echo "Current language: $language";
}
Step 2 - कार्रवाई में कुकीज़ भेजने के लिए, नामक एक विधि बनाएं actionSendCookies में SiteController।
public function actionSendCookies() {
// get cookies from the "response" component
$cookies = Yii::$app->response->cookies; // add a new cookie to the response to be sent $cookies->add(new \yii\web\Cookie([
'name' => 'language',
'value' => 'ru-RU',
]));
$cookies->add(new \yii\web\Cookie([ 'name' => 'username', 'value' => 'John', ])); $cookies->add(new \yii\web\Cookie([
'name' => 'country',
'value' => 'USA',
]));
}
Step 3 - अब, अगर तुम जाओ http://localhost:8080/index.php?r=site/send-cookies, आप देखेंगे कि कुकीज़ ब्राउज़र के अंदर सहेजे गए हैं।
Yii में, डिफ़ॉल्ट रूप से, कुकी सत्यापन सक्षम है। यह कुकीज़ को क्लाइंट की ओर से संशोधित होने से बचाता है। Config / web.php फ़ाइल से हैश स्ट्रिंग प्रत्येक कुकी को इंगित करता है।
<?php
$params = require(__DIR__ . '/params.php'); $config = [
'id' => 'basic',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'components' => [
'request' => [ // !!! insert a secret key in the following (if it is empty) - this is //required by cookie validation 'cookieValidationKey' => 'ymoaYrebZHa8gURuolioHGlK8fLXCKjO', ],
'cache' => [
'class' => 'yii\caching\FileCache',
],
'user' => [
'identityClass' => 'app\models\User',
'enableAutoLogin' => true,
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
// send all mails to a file by default. You have to set
// 'useFileTransport' to false and configure a transport
// for the mailer to send real emails.
'useFileTransport' => true,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'urlManager' => [
//'showScriptName' => false,
//'enablePrettyUrl' => true,
//'enableStrictParsing' => true,
//'suffix' => '/'
],
'db' => require(__DIR__ . '/db.php'),
],
'modules' => [
'hello' => [
'class' => 'app\modules\hello\Hello',
],
],
'params' => $params, ]; if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [ 'class' => 'yii\debug\Module', ]; $config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [ 'class' => 'yii\gii\Module', ]; } return $config;
?>
आप सेटिंग को सेट करके कुकी सत्यापन को अक्षम कर सकते हैं yii\web\Request::$enableCookieValidation के लिए संपत्ति false।