应用filter_input时,我没有期望的响应。
该程序即时维护有:
$somePostcode = isset($_POST['somecode'])? $_POST['somecode']: null;
我把它变成了:
$somePostcode = ($somePostcode = filter_input(INPUT_POST, 'somecode') ) ? $somePostcode : null;
结果不匹配;我正在获取原始的string(0)“”(我应该得到这个结果)。我得到的过滤结果为NULL。
为什么会失败,我该如何解决? 我尝试使用FILTER_DEFAULT和其他大多数过滤器,但无法使其匹配。预先感谢