<HTML>
<HEAD>
<TITLE>有默認參數的函數</TITLE>
</HEAD>
<BODY>
<FONT SIZE=5>
<?
function printColored($Text, $Color="black")//定義function函數
{
print("<FONT COLOR="$Color">$Text</FONT>");//獲取字符串的內容和顏色
}
printColored("這是黑顏色的字!");//調用function函數
print("<BR><BR>
");
printColored("這是藍顏色的字!", "blue");//調用function函數
print("<BR>
");
?>
</SIZE>
</BODY>
</HTML>