function myfunc($item)
{
if (preg_match('/тут_рег_выражение/',$item,$matches)!==false)
return $matches[0];
return "";
}
foreach ($myarray as $item)
echo myfunc($item);
function myfunc($item)
{
if (preg_match('/тут_рег_выражение/',$item,$matches)!==false)
return $matches[0];
return "";
}
foreach ($myarray as $item)
echo myfunc($item);