首頁  >  文章  >  後端開發  >  過濾器變數 PHP

過濾器變數 PHP

WBOY
WBOY原創
2016-08-08 09:22:161146瀏覽

FILTER_CALLBACK

function myfilter($val)
{
    if(in_array($val, ['one','two','three'])){
        return false;
    }else
    return $val;
}
function test($str)
{
    $opti
    $rs=filter_var($str,FILTER_CALLBACK,$options);
    var_dump($rs);
    echo '<br>';
}
test('one');
test('aaa');
test(['bbb','two','123']);

結果:

bool(false) 
string(3) "aaa" 
array(3) { [0]=> string(3) "bbb" [1]=> bool(false) [2]=> string(3) "123" } 

FILTER_VALIDATE_INT

function test($num)
{
    $opti
    $rs=filter_var($num,FILTER_VALIDATE_INT,$options);
    var_dump($rs);
    echo '<br>';
}
test(99);
test(120);
test(250);

結果:
int(130) 
int(120) 
int(130) 

以上就介紹了filter_var php,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn