ID:               39112
 Updated by:       [EMAIL PROTECTED]
 Reported By:      a at b dot c dot de
-Status:           Open
+Status:           Closed
 Bug Type:         PCRE related
 Operating System: Windows XP
 PHP Version:      5.1.6
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2006-10-10 12:25:45] a at b dot c dot de

Description:
------------
The Warning: level message that is triggered by preg_replace() when the
pattern is a string, but the replacement is an array has one or two
typos: "in" instead of "is", and a full stop that looks out of place.

Reproduce code:
---------------
<?php

$pattern = "/foo/";
$replacement = array('bar','baz');
$string = "Womble";

preg_replace($pattern, $replacement, $string);
?>



Expected result:
----------------
Warning: preg_replace(): Parameter mismatch, pattern is a string while
replacement is an array in C:\test.php on line 8

Actual result:
--------------
Warning: preg_replace(): Parameter mismatch, pattern is a string while
replacement in an array. in C:\test.php on line 8


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=39112&edit=1

Reply via email to