<!DOCTYPE html>
<html>
<body>

<?php
echo strcspn("Hello world!","w",0,6); // 开始位置是 0,搜索字符串的长度是 6。
?>
  
</body>
</html>