derick          Fri Nov  3 07:27:53 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src    README.UPDATE_5_2 
  Log:
  - Fixed API in doc.
  
  
http://cvs.php.net/viewvc.cgi/php-src/README.UPDATE_5_2?r1=1.1.2.26&r2=1.1.2.27&diff_format=u
Index: php-src/README.UPDATE_5_2
diff -u php-src/README.UPDATE_5_2:1.1.2.26 php-src/README.UPDATE_5_2:1.1.2.27
--- php-src/README.UPDATE_5_2:1.1.2.26  Tue Oct 31 17:24:51 2006
+++ php-src/README.UPDATE_5_2   Fri Nov  3 07:27:52 2006
@@ -541,34 +541,34 @@
     Methods:
       DateTime::__construct([string time[, DateTimeZone object]])
       - Returns new DateTime object
-      string DateTime::format(DateTime object, string format)
+      string DateTime::format(string format)
       - Returns date formatted according to given format
-      long DateTime::getOffset(DateTime object)
+      long DateTime::getOffset()
       - Returns the DST offset
-      DateTimeZone DateTime::getTimezone(DateTime object)
+      DateTimeZone DateTime::getTimezone()
       - Return new DateTimeZone object relative to give DateTime
-      void DateTime::modify(DateTime object, string modify)
+      void DateTime::modify(string modify)
       - Alters the timestamp
       array DateTime::parse(string date)
       - Returns associative array with detailed info about given date
-      void DateTime::setDate(DateTime object, long year, long month, long day)
+      void DateTime::setDate(long year, long month, long day)
       - Sets the date
-      void DateTime::setISODate(DateTime object, long year, long week[, long 
day])
+      void DateTime::setISODate(long year, long week[, long day])
       - Sets the ISO date
-      void DateTime::setTime(DateTime object, long hour, long minute[, long 
second])
+      void DateTime::setTime(long hour, long minute[, long second])
       - Sets the time
-      void DateTime::setTimezone(DateTime object, DateTimeZone object)
+      void DateTime::setTimezone(DateTimeZone object)
       - Sets the timezone for the DateTime object
 
   DateTimeZone:
     Methods:
       DateTimeZone DateTimeZone::__construct(string timezone)
       - Returns new DateTimeZone object
-      string DateTimeZone::getName(DateTimeZone object)
+      string DateTimeZone::getName()
       - Returns the name of the timezone
-      long DateTimeZone::getOffset(DateTimeZone object, DateTime object)
+      long DateTimeZone::getOffset(DateTime object)
       - Returns the timezone offset
-      array DateTimeZone::getTransitions(DateTimeZone object)
+      array DateTimeZone::getTransitions()
       - Returns numerically indexed array containing associative array for all 
transitions for the timezone
 
   RecursiveRegexIterator:

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to