当前位置: 首页>>代码示例>>PHP>>正文


PHP DateHelper::to_string方法代码示例

本文整理汇总了PHP中DateHelper::to_string方法的典型用法代码示例。如果您正苦于以下问题:PHP DateHelper::to_string方法的具体用法?PHP DateHelper::to_string怎么用?PHP DateHelper::to_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DateHelper的用法示例。


在下文中一共展示了DateHelper::to_string方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __get

 public function __get($format)
 {
     if (in_array($format, TimeHelper::$formats)) {
         return TimeHelper::to_string($format, $this->time);
     }
     if (in_array($format, DateHelper::$formats)) {
         return DateHelper::to_string($format, $this->time);
     }
 }
开发者ID:scottdavis,项目名称:active_php,代码行数:9,代码来源:time.php

示例2: up

 public function up()
 {
     $table = $this->alter_table('users');
     $table->timestamp('channel_updated');
     $table->go();
     foreach (User::find_all() as $user) {
         $user->channel_updated = DateHelper::to_string('db', time());
         $user->save();
     }
 }
开发者ID:scottdavis,项目名称:pearfarm_channel_server,代码行数:10,代码来源:1262148568_add_channel_updated_to_users_migration.php

示例3: update_timestamps

 private static function update_timestamps(array $timestamp_cols, array $attributes)
 {
     $columns = self::columns();
     $time = DateHelper::to_string('db', time());
     foreach ($timestamp_cols as $ts) {
         if (in_array($ts, $columns)) {
             $attributes = array_merge($attributes, array($ts => $time));
         }
     }
     return $attributes;
 }
开发者ID:scottdavis,项目名称:nimblize,代码行数:11,代码来源:nimble_record.php


注:本文中的DateHelper::to_string方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。