首页 > 代码库 > php基础04:字符串函数

php基础04:字符串函数

<?php
    
    //1.strlen(),strlen() 函数返回字符串的长度,以字符计。
    echo strlen("hello world");
    echo "<hr>";

    //2.strpos()
    echo strpos("hello world", "world");
    echo "<br>";
    echo strpos("hello world", "hello");
    echo "<hr>";
?>

 

php基础04:字符串函数