=== 한글, 영문, 숫자만 남긴다 ===
$txt = trim(preg_replace('/[^\x{1100}-\x{11FF}\x{3130}-\x{318F}\x{AC00}-\x{D7AF}0-9a-zA-Z\s]/u', " ", $txt));
$txt = trim(str_replace(array("\n"), "", $txt));
=== 공백 두개 -> 한개로 수정 ===
$txt = preg_replace("/(\s){2,}/", '$1', $txt);
'IT > PHP' 카테고리의 다른 글
[CRAWL] Simple HTML DOM wildcard in attribute (0) | 2017.07.17 |
---|---|
php mongo driver 설치하기 (0) | 2016.08.16 |
메모리 부족 현상 (allowed memory size of 134217728 bytes..) (0) | 2016.07.11 |
[[ 로그 ]] php에서 간단히 로그 찍기 (0) | 2016.04.28 |
[php] php에서 mongodb에 upsert 시에 int->numberlong 변환되는 경우 (0) | 2015.04.15 |