get value in array php code example
Example 1: php value in array
in_array ( mixed $needle , array $haystack , bool $strict = false ) : bool
Example 2: php return array
<?php
function data() {
$out[0] = "abc";
$out[1] = "def";
$out[2] = "ghi";
return $out;
}
$data = data();
foreach($data as $items){
echo $items;
}