主页
PHP
PHP 字符串截取
tryphp_string_substr
运行 ❯
×
更改方向
保存代码
更改主题
<?php $x = "Hello World!"; echo substr($x, 6, 5); ?>
World