Changeset 1699 for lang/php

Show
Ignore:
Timestamp:
11/17/07 02:49:12 (6 years ago)
Author:
takuya
Message:

/lang/php/smarty_plugin: update comments

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/smarty_plugins/modifier.date_format_posted.php

    r1525 r1699  
    55        */ 
    66         
    7 require_once "Var_Dump.php"; 
     7//require_once "Var_Dump.php"; 
    88        /**  
    99        * Smarty DateFormat 拡張  
     
    1111        * Name: date_format<br /> 
    1212        * Purpose: 2006/12/25 を 2006/12/25 4時間前 とする 
     13        * 英語ではAgeとか呼ばれる 
    1314        */ 
    1415function smarty_modifier_date_format_posted($date){ 
     
    3031         
    3132        if( $hours < 1 && $minutes < 1 && $days == 0 ){ 
    32                 return " $times 秒前";//サーバーのタイムスタンプがシビア 
     33                return " $times 秒前";//PHPの実行速度の影響をもろに受ける 
    3334        }else if( $hours < 1 && $days == 0 ){ 
    3435                return " $minutes 分前";