doudu22272099831 2017-03-29 17:16
浏览 125
已采纳

使用PHP filter_var_array(),为什么FILTER_CALLBACK将函数参数转换为字符串?

In the following code, why does the callback function cast the $value argument as string?

$post_values = $_POST['dates'];
/*
var_dump of $post_values
array(1) { [0]=> array(3) { ["date"]=> string(10) "2016-05-10" ["starttime"]=> string(5) "12:30" ["endtime"]=> string(5) "14:33" } }
*/



$args = [
  'dates' => [
    'filter' => FILTER_CALLBACK,
    'options' => function ($value) {
      // The $value here has been cast to string. Why?
      // $value now has value of: string(10) "2016-05-10".
      // I expect it to be an array.
      return $value;
    }
  ]
];


$filtered_values = filter_var_array($post_values, $args);
  • 写回答

2条回答 默认 最新

  • duanou9739 2018-10-30 14:01
    关注

    This is normal behavior of filter_var() and filter_var_array() functions. Official documentation of filter_var() variable parameter contains explanation:

    Note that scalar values are converted to string internally before they are filtered.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 有偿寻云闪付SDK转URL技术
  • ¥30 基于信创PC发布的QT应用如何跨用户启动后输入中文
  • ¥20 非root手机,如何精准控制手机流量消耗的大小,如20M
  • ¥15 远程安装一下vasp
  • ¥15 自己做的代码上传图片时,报错
  • ¥15 Lingo线性规划模型怎么搭建
  • ¥15 关于#python#的问题,请各位专家解答!区间型正向化
  • ¥15 unity从3D升级到urp管线,打包ab包后,材质全部变紫色
  • ¥50 comsol温度场仿真无法模拟微米级激光光斑
  • ¥15 上传图片时提交的存储类型