<?php
$u=array("a","b","c","d");
for ($x=0 ; $x<count($u); $x++)
{
if($u[$x]=="c") continue;
echo $u[$x];
printf(%s,$u[$x]);
}
echo "testok";
?>
为何显示为空呢,