为什么匹配不了"<c"?

php代码:
<?php
$string = "html hell ";
preg_match_all("/<c/",$string,$matches);
print_r($matches);

?>
输出结果:
Array ( [0] => Array ( [0] =>
后面什么都没有了。
如果只匹配尖括号,是可以的
<?php
$string = "html hell ";
preg_match_all("/</",$string,$matches);
print_r($matches);

?>
输出结果:Array ( [0] => Array ( [0] => < ) )

你的HTML是不是没有显示全?

没在 $string = "html hell "; 找到 <c之类的字符