PHP sprintf用法

$tpl = "

        
        
        %s
        
        %s
";
return sprintf($tpl, $from_username, $to_username, time(), $data);//第一个是带参数的变量,后面依次对应参数变量。
}

你可能感兴趣的:(PHP,sprintf)