美文网首页
十月十号

十月十号

作者: 网站蒋立卫 | 来源:发表于2018-10-10 11:48 被阅读0次

    stristr():返回一个字符串在另一个字符串中开始位置到结束的字符串,不区分大小写。

    调用:string stristr(string haystack, mixedneedle[, bool $before_needle = false])

    strtr():转换字符串中的某些字符

    echo strtr('hello world', 'hello', 'no');//nollo world

    调用:string strtr(string str, stringfrom, string $to)

    strpos():寻找字符串中某个字符最先出现的位置

    echo strpos('hello world', 'o');//4

    调用:int strpos(string haystack, mixedneedle[, int $offset = 0])

    stripos():寻找字符串某字符最先出现的位置,不区分大小写

    相关文章

      网友评论

          本文标题:十月十号

          本文链接:https://www.haomeiwen.com/subject/azrpaftx.html