zoukankan      html  css  js  c++  java
  • PHP strcspn() 函数

    实例

    输出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符数:

    <?php高佣联盟 www.cgewang.com
    echo strcspn("Hello world!","w");
    ?>

    定义和用法

    strcspn() 函数返回在找到任何指定的字符之前,在字符串查找的字符数(包括空格)。

    提示: Use the strspn() function to the number of characters found in the string that contains only characters from a specified character list.

    注释: This function is binary-safe.


    语法

    strcspn(string,char,start,length)

    参数描述
    string 必需。规定要搜索的字符串。
    char 必需。规定要查找的字符。
    start 可选。规定开始查找的位置。
    length 可选。规定字符串的长度(搜索多少字符)。

    技术细节

    返回值: 返回在找到任何指定的字符之前,在字符串查找的字符数。
    PHP 版本: 4+
    更新日志: 在 PHP 4.3 中,新增了 start 和 length 参数。


    更多实例

    实例 1

    使用所有的参数来输出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符数:

    <?php
    echo strcspn("Hello world!","w",0,6); // The start position is 0 and the length of the search string is 6.
    ?>
  • 相关阅读:
    vue.config.js的配置与注释
    Git Pages,使用gh-pages分支显示静态网站
    git subtree 公共仓库
    vue之计算属性
    前端模块化AMD和CMD
    jQuery实现表单全选反选,简洁,好用
    vue之点击切换样式
    vue之本地代理解决跨域问题
    ES6
    jQuery 总结
  • 原文地址:https://www.cnblogs.com/yc10086/p/13124331.html
Copyright © 2011-2022 走看看