andrey          Sat Dec  6 11:46:29 2003 EDT

  Added files:                 
    /php-src    README.PHP4-TO-PHP5-THIN-CHANGES 
  Log:
  A small start for so called "not-yet-written faq" about small changes that
  may make someone's life a nightmare for some time. It will be good when a
  change is made a line in this file to be written and then it will be easier
  for the doc team to write comprehensive and pretty FAQ for the end users.
  
  

Index: php-src/README.PHP4-TO-PHP5-THIN-CHANGES
+++ php-src/README.PHP4-TO-PHP5-THIN-CHANGES
1. strr(i)pos() now uses the full needle when searching - be aware that code that 
previous have run now can stop working.
   EX :
   <?php
   var_dump(strrpos("ABCDEF","DEF"));
   var_dump(strrpos("ABCDEF","DAF"));
   ?>
   Will give you differents results. The diffence is in the second cal to strrpos(). 
The same applies and for strripos().
2. Change illegal use of string offset from E_WARNING to E_ERROR

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

Reply via email to