php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #54619 stripslashes extention
Submitted: 2011-04-28 10:43 UTC Modified: 2011-04-28 11:03 UTC
From: rc at opelgt dot org Assigned:
Status: Wont fix Package: Strings related
PHP Version: 5.3.6 OS:
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 — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
36 + 21 = ?
Subscribe to this entry?

 
 [2011-04-28 10:43 UTC] rc at opelgt dot org
Description:
------------
It would be nice (reduces lines in code) when stripslashes could handle arrays. 
For example stripslashes($_COOKIE);


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-04-28 11:03 UTC] aharvey@php.net
-Status: Open +Status: Wont fix -Package: Arrays related +Package: Strings related
 [2011-04-28 11:03 UTC] aharvey@php.net
You can already do this with array_map():

$cookies = array_map('stripslashes', $_COOKIE);

I don't think there's any need to special case stripslashes() to handle arrays when there's already a generic method to accomplish this.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Jun 16 03:01:28 2024 UTC