Ignore:
Timestamp:
2011/10/25 00:02:55 (13 years ago)
Author:
Seasoft
Message:

#1521 (PEAR::SOAP 配布と異なる部分がある)

  • 新しいバージョンの配布ファイルを上書きすることで解決

#1522 (PEAR::SOAP をバージョンアップ)

  • 0.11.0 -> 0.12.0
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/module/SOAP/Type/dateTime.php

    r20119 r21299  
    11<?php 
    22/** 
    3  * This file contains the code for the SOAP date/time clas. 
     3 * This file contains the code for the SOAP_Type_dateTime class. 
    44 * 
    55 * PHP versions 4 and 5 
     
    1717 * @author     Shane Caraveo <Shane@Caraveo.com>   Port to PEAR and more 
    1818 * @author     Jan Schneider <jan@horde.org>       Maintenance 
    19  * @copyright  2003-2005 The PHP Group 
     19 * @copyright  2003-2007 The PHP Group 
    2020 * @license    http://www.php.net/license/2_02.txt  PHP License 2.02 
    2121 * @link       http://pear.php.net/package/SOAP 
     
    3131 * @author   Jan Schneider <jan@horde.org>       Maintenance 
    3232 */ 
    33 class SOAP_Type_dateTime  
     33class SOAP_Type_dateTime 
    3434{ 
    3535    var $_iso8601 = 
     
    9797        //simulate PHP5's P parameter 
    9898        $zone = date('O', $timestamp); 
    99         if (strlen($zone) == 5) { 
     99        if (strlen($zone) === 5) { 
    100100            $zone = substr($zone, 0, 3) . ':' . substr($zone, 3); 
    101101        } 
Note: See TracChangeset for help on using the changeset viewer.