[PHP]配列が空か確認する方法
emptyを使用する
<?php
// Create an example array
$myArray = array();
// Check if the array is empty using empty()
if (empty($myArray)) {
echo "The array is empty.";
} else {
echo "The array is not empty.";
}
?>
emptyを使用する
<?php
// Create an example array
$myArray = array();
// Check if the array is empty using empty()
if (empty($myArray)) {
echo "The array is empty.";
} else {
echo "The array is not empty.";
}
?>