3
我已經從編碼搜索的單詞邊界有: w取決於編碼?
<?php
header('Content-Type: text/plain; charset="ISO-8859-7"');//Changing the charset attribute
$i=0;
for($i=0;$i<=255;$i++){
$char=chr($i);
if(preg_match('/^\w$/',$char,$m)){
echo "[".ord($m[0])."]";}
}
?>
我不知道它是錯誤的。 但是總是給我某些職位,不管charset是什麼樣的。 似乎總是,無論使用何種編碼,'\ w'都與來自ISO-8859-1的字符相匹配。
@hakre你很迷惑\ b,cuz \ w確實匹配一個單詞字符。 http://www.regular-expressions.info/reference.html – nEAnnam