doudu22272099831 2017-03-29 09: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 06: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条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部