CakePHP 日期和時(shí)間
cakephp 日期和時(shí)間
為了在 cakephp4 中處理日期和時(shí)間,我們將使用可用的 frozentime 類(lèi)。
要處理日期和時(shí)間,請(qǐng)?jiān)诳刂破髦邪擃?lèi)
use cake\i18n\frozentime;
讓我們使用 frozentime 類(lèi)來(lái)處理示例并顯示日期和時(shí)間。
示例
在 config/routes.php 文件中進(jìn)行更改,如以下程序所示。
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('datetime',['controller'=>'dates','action'=>'index']); $builder->fallbacks(); });
在 src/controller/datescontroller.php 中創(chuàng)建一個(gè) datescontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。如果已經(jīng)創(chuàng)建則忽略。
src/controller/datescontroller.php
namespace app\controller; use app\controller\appcontroller; use cake\i18n\frozentime; class datescontroller extends appcontroller{ public function index(){ $time = frozentime::now(); $now = frozentime::parse('now'); $_now = $now--->i18nformat('yyyy-mm-dd hh:mm:ss'); $this->set('timenow', $_now); $now = frozentime::parse('now'); $nice = $now->nice(); $this->set('nicetime', $nice); $hebrewdate = $now->i18nformat(\intldateformatter::full, null, 'en-ir@calendar=hebrew'); $this->set("hebrewdate",$hebrewdate); $japanesedate = $now->i18nformat(\intldateformatter::full, null, 'en-ir@calendar=japanese'); $this->set("japanesedate",$japanesedate); $time = frozentime::now(); $this->set("current_year",$time->year); $this->set("current_month",$time->month); $this->set("current_day",$time->day); } } ?>
在 src/template 中創(chuàng)建一個(gè) dates 目錄,然后在該目錄下創(chuàng)建一個(gè)名為index.php 的 view 文件。將以下代碼復(fù)制到該文件中。
src/template/dates/index.php
echo "the current date and time is = ".$timenow; echo " "; echo "using nice format available = ".$nicetime; echo " "; echo "date and time as per hebrew calender =" .$hebrewdate; echo " "; echo "date and time as per japanese calender =" .$japanesedate; echo " "; echo "current year = ".$current_year; echo " "; echo "current month = ".$current_month; echo " "; echo "current day = ".$current_day; ?>
通過(guò)訪問(wèn)以下 url 執(zhí)行上述示例:
http://localhost/cakephp4/datetime
輸出
當(dāng)您運(yùn)行代碼時(shí),您將看到以下輸出:
相關(guān)文章
- CodeIgniter 文件上傳
- CodeIgniter 發(fā)送電子郵件
- CodeIgniter Cookie管理
- CakePHP 控制器
- CakePHP 擴(kuò)展視圖
- CakePHP 查看事件
- CakePHP 服務(wù)
- CakePHP Cookie 管理
- CakePHP 驗(yàn)證
- FuelPHP 安裝
- FuelPHP 表單編程
- FuelPHP 模塊
- FuelPHP 分析器
- Laravel 教程
- Laravel 概述
- Laravel 請(qǐng)求
- Laravel 響應(yīng)
- Laravel 錯(cuò)誤和日志
- Laravel 表單
- Laravel 發(fā)送電子郵件