Path: C:\
<?php
function getList () {
// Assume some error occurs here and instead of
// a list/array, a boolean FALSE is returned.
return false;
}
// Get the array from a function call.
$myList = getList();
if ($myList == false){echo 'False<br>';}else{echo 'True<br>';}
//Loop through the $myList array.
foreach($myList as $arrayItem)
{
//Do something.
}
?>