Is there a native PHP function to loop through array
and check if any element of this array is empty null
?
Look at the code below:
if(isset($_POST['btnCriaModelo'])){
$instArray = $_POST['idInstrucao'];
$orderArray = $_POST['ordem'];
for ($i=1; $i < count($instArray) ; $i++) {
/*
Aqui é onde pensei em fazer essa verificação mas não consigo criar uma lógica.
A variável auxilar $i começa com o valor 1 por que naturalmente no meu código
o primeiro elemento destes vetores acima são vazios, porém todos os outros elementos
não podem se quer um está vazios
*/
}
}
The reason I need to do this is to do a validation with PHP. If there is any element of the empty vector I do not wrap the insertion loop in my bank.