시소당
function str_tag_on(
$str) {
$str = str_replace("&","&",
$str);
$str = str_replace("<","<",
$str);
return str_replace(">",">",
$str);
}
function str_tag_off(
$str) {
$str = str_replace("<","<",
$str);
return str_replace(">",">",
$str);
}
특이한것은 없다.