精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

CakePHP 國際化

cakephp 國際化

 

像許多其他框架一樣,cakephp 也支持國際化。我們需要按照這些步驟從單一語言到多語言。

 

步驟 1

創建一個單獨的語言環境目錄資源\ 語言環境

 

步驟 2

在目錄 src\locale 下為每種語言創建子目錄。子目錄的名稱可以是語言的兩個字母 iso 代碼或完整的語言環境名稱,如 en_us、fr_fr 等。

 

步驟 3

在每個語言子目錄下創建單獨的 default.po 文件。該文件包含 msgidmsgstr形式的條目,如下程序所示。

msgid "msg"
msgstr "cakephp internationalization example."

這里, msgid 是將在視圖模板文件中使用的鍵, msgstr 是存儲翻譯的值。

 

步驟 4

在查看模板文件,我們可以使用上面的 msgid,如下圖,會根據locale的設置值進行翻譯。

 echo __('msg'); 

可以通過以下行在 config/app.php 文件中設置默認語言環境。

'defaultlocale' => env('app_default_locale', 'en_us')

要在運行時更改本地,我們可以使用以下幾行。

use cake\i18n\i18n;
i18n::locale('de_de');

 

示例

在 config/routes.php 文件中進行更改,如以下程序所示。

config/routes.php

use cake\http\middleware\csrfprotectionmiddleware;
use cake\routing\route\dashedroute;
use cake\routing\routebuilder;
$routes--->setrouteclass(dashedroute::class);
$routes->scope('/', function (routebuilder $builder) {
   $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
      'httponly' => true,
   ]));
   $builder->applymiddleware('csrf');
   //$builder->connect('/pages',
      ['controller'=>'pages','action'=>'display', 'home']);
   $builder->connect('locale',
      ['controller'=>'localizations','action'=>'index']);
   $builder->fallbacks();
});

src/controller/localizationscontroller.php 中創建一個 localizationscontroller.php 文件。 將以下代碼復制到控制器文件中。

src/controller/localizationscontroller.php

   namespace app\controller;
   use app\controller\appcontroller;
   use cake\i18n\i18n;
   class localizationscontroller extends appcontroller {
      public function index() {
         if($this--->request->is('post')) {
            $locale = $this->request->getdata('locale');
            i18n::setlocale($locale);
         }
      }
   }
?>

在資源\ locales 中創建一個 locales 目錄。在 locales 目錄下創建 3 個名為 en_us, fr_fr, de_de 的目錄。在每個目錄下創建一個名為 default.po 的文件。 將以下代碼復制到相應文件中。

resources/locales/en_us/default.po

msgid "msg"
msgstr "cakephp internationalization example."

resources/locales/fr_fr/default.po

msgid "msg"
msgstr "exemple cakephp internationalisation."

resources/locales/de_de/default.po

msgid "msg"
msgstr "cakephp internationalisierung beispiel."

src/template 中創建一個 localizations 目錄,然后在該目錄下創建一個名為 index.php 的 view 文件。 在該文件中復制以下代碼。

src/template/localizations/index.php

   echo $this--->form->create(null,array('url'=>'/locale'));
   echo $this->form->radio("locale",
      [
         ['value'=>'en_us','text'=>'english'],
         ['value'=>'de_de','text'=>'german'],
         ['value'=>'fr_fr','text'=>'french'],
      ]
   );
   echo $this->form->button('change language');
   echo $this->form->end();
?>
 echo __('msg'); 

通過訪問以下 url 執行上述示例。 http://localhost/cakephp4/locale

 

輸出

執行后,您將收到以下輸出。

 

電子郵件

cakephp 提供電子郵件類來管理電子郵件相關功能。要在任何控制器中使用電子郵件功能,我們首先需要通過編寫以下行來加載電子郵件類。

use cake\mailer\email;

email 類提供了各種有用的方法,如下所述。

語法

from(string|array|null $email null, string|null $name null )

參數
  • 帶電子郵件的字符串
  • 姓名
  • 返回

    數組|$this

    描述

    它指定來自哪個電子郵件地址;電子郵件將被發送

    語法

    to(string|array|null $emailnull, string|null $namenull)

    參數
  • 帶電子郵件的字符串
  • 姓名
  • 返回

    數組|$this

    描述

    它指定電子郵件將發送給誰

    語法

    發送(string|array|null $contentnull)

    參數
  • 帶有消息的字符串或帶有消息的數組。
  • 退貨 數組
    描述

    使用指定的內容、模板和布局發送電子郵件

    語法

    subject(string|null $subjectnull)

    參數
  • 主題字符串
  • 返回

    數組|$this

    說明

    獲取/設置主題

    語法

    attachments(string|array|null $attachmentsnull)

    參數
  • 帶有文件名的字符串或帶有文件名的數組
  • 退貨

    數組|$this

    說明

    在電子郵件中添加附件

    語法

    bcc(string|array|null $emailnull, string|null $namenull)

    參數
  • 帶電子郵件的字符串
  • 姓名
  • 退貨

    數組|$this

    說明

    密件抄送

    語法

    cc( string|array|null $emailnull , string|null $namenull )

    參數
  • 帶電子郵件的字符串
  • 姓名
  • 退貨

    數組|$this

    說明

    抄送

     

    示例

    在 config/routes.php 文件中進行更改,如以下程序所示。

    config/routes.php

    use cake\http\middleware\csrfprotectionmiddleware;
    use cake\routing\route\dashedroute;
    use cake\routing\routebuilder;
    $routes--->setrouteclass(dashedroute::class);
    $routes->scope('/', function (routebuilder $builder) {
       $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
          'httponly' => true,
       ]));
       $builder->applymiddleware('csrf');
       //$builder->connect('/pages',['controller'=>'pages','action'=>'display', 'home']);
       $builder->connect('/email',['controller'=>'emails','action'=>'index']);
       $builder->fallbacks();
    });

    src/controller/emailscontroller.php 中創建一個 emailscontroller.php 文件。 將以下代碼復制到控制器文件中。

    src/controller/emailscontroller.php

       namespace app\controller;
       use app\controller\appcontroller;
       use cake\mailer\email;
       class emailscontroller extends appcontroller{
          public function index(){
             $email = new email('default');
             $email--->to('abc@gmail.com')
               ->subject('about')
               ->send('my message');
          }
       }
    ?>

    src/template 創建一個目錄 emails 并在該目錄下創建一個名為 index.php 的視圖文件。 復制以下代碼在那個文件中。

    src/template/emails/index.php

    email sent.

    在發送任何電子郵件之前,我們需要對其進行配置。在下面的屏幕截圖中,您可以看到有兩種傳輸方式,default 和 gmail。我們使用了 gmail 傳輸。

    您需要將"gmail username"替換為您的 gmail 用戶名,將"app password"替換為您的應用程序密碼。您需要在 gmail 中開啟兩步驗證并創建新的 app 密碼才能發送電子郵件。

    config/app.php

    通過訪問以下 url 執行上述示例-http://localhost/cakephp/email

     

    輸出

    執行后,您將收到以下輸出。

    下一節:cakephp 會話管理

    cakephp 教程

    相關文章