Source Code:
(back to article)
<?php $array = [1, 2, 3]; if (count($array) > 1) { echo "The array has more than one element."; }
Result:
Report an issue