php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #9325 wrong parameter count for preg_replace
Submitted: 2001-02-18 13:14 UTC Modified: 2001-02-22 10:46 UTC
From: tm at salome dot datron dot cz Assigned:
Status: Not a bug Package: *Regular Expressions
PHP Version: 4.0.4pl1 OS: linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
26 - 19 = ?
Subscribe to this entry?

 
 [2001-02-18 13:14 UTC] tm at salome dot datron dot cz
i've the following code:
<?
  $string="test test test test"
  $newstring=preg_replace("/test/","ok",$newstring,1);
  echo $newstring;
?>
from your manual pages to preg_replace function it allow to specify a limit number of matches. But here it reports an error:  Wrong parameter count for preg_replace() in test.php on line 3

;-(

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-02-22 10:46 UTC] stas@php.net
works for me in latest version. You probably have an old
one. BTW, you have bug in your code - preg_replace shoudl
take string, not newstring.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 08:01:28 2024 UTC