PHP
Deprecated: Function ereg_replace() is deprecated .. 해결
은둔한량
2013. 2. 18. 15:28
반응형
Deprecated: Function ereg_replace() is deprecated
$output = ereg_replace (";", "", $output);
: 변경
$output = preg_replace ("( ; )", "", $output);
반응형