php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13952 str_replace, ereg_replace produce no result when matching char is first
Submitted: 2001-11-06 07:41 UTC Modified: 2001-11-10 12:04 UTC
From: o dot zellmann at eu dot modine dot com Assigned:
Status: Not a bug Package: Strings related
PHP Version: 4.0.6 OS: Win 2000 5.00.2195
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:
23 + 34 = ?
Subscribe to this entry?

 
 [2001-11-06 07:41 UTC] o dot zellmann at eu dot modine dot com
<?php
$str="?++";
$str=str_replace("?","+",$str);
echo $str;
?>

output in browser:

?++

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-11-10 12:04 UTC] sander@php.net
Works fine for me on Win2K using PHP-4.0.6. I can't imagine this is a bug.
Please note that ? and + are considered as special characters by ereg_replace. See www.php.net/ereg_replace for more info.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 01:01:28 2024 UTC