我在表单中有超过30个字段,并且无法相信我必须编写一个数组来检查其中是否有empty (like
here )
我需要像js
$_POST[].each function{
if this is empty...
}
并希望'php'as so glorified
语言具有类似的功能。
答案 0 :(得分:1)
试试这个:
foreach($_POST as $post)
{
if( !empty($post) )
{
// your code here
}
}