<?PHP
function toStrong($msg)
{
    return '<strong>'.$msg.'</strong>';
}
 
 
$toStrong = 'toStrong';
 
 
$s = <<<EOS
<div>
    <p>내 이름은 {$toStrong('백충덕')} 입니다.</p>
</div>
EOS;
 
 
echo $s;

 

 

 

 

Posted by bloodguy
,