php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #40075 FILTER_CALLBACK generates strange results
Submitted: 2007-01-09 13:43 UTC Modified: 2007-01-09 14:20 UTC
From: crocodile2u at yandex dot ru Assigned:
Status: Closed Package: Filter related
PHP Version: 5.2.0 OS: Kubuntu linux 6.06
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: crocodile2u at yandex dot ru
New email:
PHP Version: OS:

 

 [2007-01-09 13:43 UTC] crocodile2u at yandex dot ru
Description:
------------
Specifying a simple callback for the filter_var_array function leads to invalid results.

Reproduce code:
---------------
function t($v){return $v;}
var_dump(filter_var_array(array("x"=>"s"), array("x"=>array("filter"=>FILTER_CALLBACK, "options"=>"t"))));

Expected result:
----------------
array(1) {
  ["x"]=>
  string(1) "s"
}

Actual result:
--------------
array(1) {
  ["x"]=>
  string(1) "("
}

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-01-09 14:13 UTC] pajoye@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip


 [2007-01-09 14:20 UTC] crocodile2u at yandex dot ru
Just installed the latest snapshot. Everything works like a charm. Thanks a lot.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 08:01:28 2024 UTC