本文整理匯總了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);
}
}
示例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;
}