- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP FILTER_CALLBACK 过滤器
完整的 PHP Filter 参考手册
定义和用法
FILTER_CALLBACK 过滤器调用用户自定义函数来过滤数据。
该过滤器为我们提供了对数据过滤的完全控制。
指定的函数必须存入名为 "options" 的关联数组中。请参见下面的实例。
- Name: "callback"
- ID-number: 1024
提示和注释
提示:您可以创建自己的函数,或者使用已有的 PHP 函数。
实例 1
使用用户定义的函数:
<?php
function convertSpace($string)
{
return str_replace(" ", "_", $string);
}
$string = "Peter is a great guy!";
echo filter_var($string, FILTER_CALLBACK,
array("options"=>"convertSpace"));
?>
function convertSpace($string)
{
return str_replace(" ", "_", $string);
}
$string = "Peter is a great guy!";
echo filter_var($string, FILTER_CALLBACK,
array("options"=>"convertSpace"));
?>
代码的输出如下所示:
Peter_is_a_great_guy!
实例 2
使用现有的 PHP 函数:
<?php
$string="Peter is a great guy!";
echo filter_var($string, FILTER_CALLBACK,
array("options"=>"strtoupper"));
?>
$string="Peter is a great guy!";
echo filter_var($string, FILTER_CALLBACK,
array("options"=>"strtoupper"));
?>
代码的输出如下所示:
PETER IS A GREAT GUY!
完整的 PHP Filter 参考手册
关注微信小程序
扫描二维码
程序员编程王