preg_match에서 태그 코드를 삭제하는 방법
preg_match('/<a.*?href=["|\'](.*?)(\/page-\d{1,}\.html?)\/?(page-\d{1,} \.html)?(.*?)["|\'].*?>/',$content,$matches);코드에서 "page-" 및 ".html"을 삭제한 후의 모습은 무엇입니까?
简简单单 2019-03-21 17:34:47 0 0 836
$zz = '/[0-5]\w+/'; + 기호는 무엇에 사용됩니까? 아래의 일부 예에는 왜 포함되지 않습니까?
<?php$zz = '/[0-5]\w+/';$string = '1C';$string2 = '1C$';if(preg_match($zz, $string, $matches)){ echo ' 일치하면 결과는 다음과 같습니다. ';
益伦 2017-10-21 12:04:43 0 3 1563
곡절 문자 '^'의 사용법에 대해
<?phpheader('Content-Type: text/html; charset=utf-8');$pattern='/[^0-9A-Za-z_]/';$string='!$@!#%$ #^##';if(preg_match($pattern, $string,$match)){ echo '
Will 2017-11-08 17:11:58 0 2 2445
정규식 "." 답변 부탁드립니다.
<?$zz = '/gg.+gg/';$string = "ABC1ABC";$if(preg_match($zz,$string,$matches)){ echo '일치됨, 결과는 다음과 같습니다:'; 일치);}else{  
phpcn_u10161 2017-07-21 10:44:21 0 2 1480