我昨天在看圣经的时候,里面提到下面这段代码
复制内容到剪贴板
代码:
switch($find)
{
case 'a':
echo '<p>Regular customer.</p>';
break;
case 'b':
echo '<p>Customer referred by TV advert.</p>';
break;
case 'c':
echo '<p>Customer referred by phone directory.</p>';
break;
case 'd':
echo '<p>Customer referred by word of mouth,</p>';
break;
default:
echo '<p>we do not know how this customer found us.</p>';
break;
}请问这段小代码是什么意思,其他的我的看的懂
复制内容到剪贴板
代码:
default:
echo '
we do not know how this customer found us.
';
break;