php/doc-en

Examples for filter_var

開放

#1,475 建立於 2022年3月23日

 (1 則留言) (0 個反應) (0 位負責人)XML (882 個分叉)auto 404
Extension: filterenhancementgood first issue

倉庫指標

星標
 (596 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

From manual page: https://php.net/function.filter-var


There is no example with if and I saw a lot of implementations like:

if (!filter_var($value, $type)) {
    echo 'error';
}

and it should be:

if (filter_var($value, $type) !== $value) {
    echo 'error';
}

Especially, when you validated with FILTER_VALIDATE_BOOLEAN filter.

貢獻者指南