<?
class Font { // Ŭ·¡½º Á¤ÀÇ
function redfont($col, $size, $str){
echo "<font color=$col size=$size>
$str </font><p>";
}
function bluefont($col, $size, $str){
echo "<font color=$col size=$size>
$str </font><p>";
}
}
$font = new Font; // °´Ã¼ »ý¼º
$font -> redfont(red, 5, redcolor);
$font -> bluefont(blue, 7, bluecolor);
?> |