php
특수문자 제거 - 정규표현식
- 관리자 2020.09.18 php 인기
-
- 8,724
- 0
$string = preg_replace("/[ #\&\+\-%@=\/\\\:;,\.'\"\^`~\_|\!\?\*$#<>()\[\]\{\}]/i", "", $string);
preg_replace("/[ #\&\+\-%@=\/\\\:;,\.'\"\^`~\_|\!\?\*$#<>()\[\]\{\}]/i", "", $string);
preg_replace('/[^A-Za-zㄱ-힣0-9-]/', '', $str);
preg_replace("/[/&%#$]/", "", $str);
- 이전글DB 테이블명이 있는지 체크2020.09.18
댓글목록
등록된 댓글이 없습니다.