菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码
运行
保存
<html> <body> <?php echo strcspn("Hello world!","w",0,6); // The start position is 0 and the length of the search string is 6. ?> </body> </html>
运行结果
<!DOCTYPE html> <html> <body> 6 </body> </html>