그들이 적용되기 전에 정규식 패턴을 벗어날 수있는 PHP 함수가 있습니까?
PHP그들이 적용되기 전에 정규식 패턴을 벗어날 수있는 PHP 함수가 있습니까?
그들이 적용되기 전에 정규식 패턴을 벗어날 수있는 PHP 함수가 있습니까?
나는 C # Regex.Escape () 함수의 라인을 따라 뭔가를 찾고있다.
해결법
-
==============================
1.preg_quote ()가 당신이 찾고있는 것이다 :
preg_quote ()가 당신이 찾고있는 것이다 :
중요한 것은 $ delimiter 인수가 지정되지 않으면 정규 표현식을 감싸는 데 사용되는 문자 (일반적으로 슬래시 (/))가 이스케이프되지 않는다는 점입니다. 대개 $ delimiter 인수로 정규 표현식에서 사용하는 구분 기호를 전달하려고합니다.
$url = 'http://stackoverflow.com/questions?sort=newest'; // preg_quote escapes the dot, question mark and equals sign in the URL (by // default) as well as all the forward slashes (because we pass '/' as the // $delimiter argument). $escapedUrl = preg_quote($url, '/'); // We enclose our regex in '/' characters here - the same delimiter we passed // to preg_quote $regex = '/\s' . $escapedUrl . '\s/'; // $regex is now: /\shttp\:\/\/stackoverflow\.com\/questions\?sort\=newest\s/ $haystack = "Bla bla http://stackoverflow.com/questions?sort=newest bla bla"; preg_match($regex, $haystack, $matches); var_dump($matches); // array(1) { // [0]=> // string(48) " http://stackoverflow.com/questions?sort=newest " // }
from https://stackoverflow.com/questions/1531456/is-there-a-php-function-that-can-escape-regex-patterns-before-they-are-applied by cc-by-sa and MIT license
'PHP' 카테고리의 다른 글
PHP를 사용하여 오디오 스트림에서 트랙 정보 가져 오기 (0) | 2018.09.15 |
---|---|
MySQL IN 문에 대한 PDO 바인딩 값 (0) | 2018.09.15 |
각각의`echo` 호출 후에 어떻게 출력을 플러시합니까? (0) | 2018.09.15 |
앰퍼샌드가있는 PHP 함수를 시작한다는 것은 무엇을 의미합니까? (0) | 2018.09.15 |
PHP를 사용하여 큰 파일 스트리밍 (0) | 2018.09.15 |