From: Operating system: Windows XP SP 3 PHP version: 5.3.1RC1 Package: Reflection related Bug Type: Bug Bug description:substr_count cannot find a \n when in a string with \r\n
Description: ------------ --- >From manual page: http://www.php.net/function.substr-count#Description --- substr_count cannot find a newline when in a string with a carriage return and newline right after eachother Test script: --------------- <?php echo substr_count("\n", "\n"); echo substr_count("\n", "\r\n"); echo substr_count(' ', "\r\n"); //I've changed the following simple string in my script so it only holds a newline character echo substr_count(' ', "\n"); //I've changed the following simple string in my script so it only holds a newline character echo substr_count("\n", ' '); echo substr_count("\n", ' '); echo substr_count(' ', ' '); ?> Expected result: ---------------- 1111111 Actual result: -------------- 1011101 -- Edit bug report at http://bugs.php.net/bug.php?id=53363&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=53363&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=53363&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=53363&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=53363&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=53363&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=53363&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=53363&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=53363&r=needscript Try newer version: http://bugs.php.net/fix.php?id=53363&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=53363&r=support Expected behavior: http://bugs.php.net/fix.php?id=53363&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=53363&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=53363&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=53363&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=53363&r=php4 Daylight Savings: http://bugs.php.net/fix.php?id=53363&r=dst IIS Stability: http://bugs.php.net/fix.php?id=53363&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=53363&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=53363&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=53363&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=53363&r=mysqlcfg