PHP 제거하는 공식 By techsupport Comments Off on PHP 제거하는 공식 1 Min Read 1. 특수문자만 골라서 제거하자! 1 preg_replace(“/[ #\&\+\-%@=\/\\\:;,\.’\”\^`~\_|\!\?\*$#<>()\[\]\{\}]/i”, “”, $string); 2. 알파벳만 남기고 모조리 제거하자! 1 preg_replace(“/[^a-z]/i”, “”, $string); 3. 숫자만 남기고…