Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.6.0a3

Bug #3572 Use of addslashes() adds too much backslashes
Submitted: 2005-02-24 09:59 UTC
From: bluem at gmx dot de Assigned: aidan
Status: Closed Package: PHP_Compat
PHP Version: Irrelevant OS: Any (reprod.: Linux, Mac OS X)
Roadmaps: 1.6.0a1    
Subscription  
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes. If this is not your bug, you can add a comment by following this link. If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
2006-12-27 05:05 UTC
Package:
Bug Type:
Summary:
From: bluem at gmx dot de
New email:
PHP Version: Package Version: OS:

 

 [2005-02-24 09:59 UTC] bluem at gmx dot de
Description: ------------ This bug affects the implementation of var_export() in the latest PHP_Compat version (4.3.1). Problem: Strings are quoted using $stringdelim, but nevertheless escaping is done with addslashes(). This results in double quotes being escaped with a backslash, although no backslash would be necessary. Solution: It should suffice to exchange the two occurrences of addslashes() with the following code: str_replace($stringdelim, '\\'.$stringdelim, $value) Reproduce code: --------------- echo "<pre>"; print_r(var_export('Hello "Foo" World')); echo "</pre>\n"; Expected result: ---------------- 'Hello "Foo" World' Actual result: -------------- 'Hello \"Foo\" World'

Comments

 [2005-02-28 08:47 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!