举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > php strchr函数 PHP strcspn() 函数

php strchr函数 PHP strcspn() 函数

2023-03-12 18:31 PHP教程

php strchr函数 PHP strcspn() 函数

php strchr函数

PHP strchr函数是一个字符串处理函数,它可以用来查找字符串中指定的字符,并返回从该字符开始到字符串末尾的所有内容。

string strchr ( string $haystack , mixed $needle [, bool $before_needle = false ] )

strchr函数的语法如上所示,其中haystack参数是要搜索的字符串,needle参数是要查找的字符,before_needle参数是一个布尔值,用于指定是否在返回之前返回needle。如果设置为true,则会在返回之前返回needle。

strchr函数非常有用,可以用来快速查找特定字符在字符串中的位置。例如,假设我们有一个URL字符串“http://www.example.com/index.php”,我们想要获得URL中文件名“index.php”。我们可以使用strchr函数来快速获得文件名:

$filename = strchr($url, '/');

上面的代码将返回“/index.php”。然后我们可以使用PHP内建函数basename来获得文件名:

$filename = basename($filename); // index.php

此外,strchr函数也可用于分割URL中的不同部分。例如,假设我们想要将URL分割成协议、域名、文件夹和文件名4部分。我们可以使用strchr函数来快速实现此目标:

$protocol = substr($url, 0, strpos($url, '://')); // http 
$domain = substr($url, strpos($url, '://') + 3); // www.example.com/index.php 
$folder = strchr($domain, '/', true); // www.example.com 
$filename = basename(strchr($domain, '/')); // index.php 

PHP strcspn() 函数

PHP strcspn() 函数

PHP String 参考手册 PHP String 参考手册

实例

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

<?php
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 中,新增了 startlength 参数。


更多实例

实例 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.
?>

运行实例 »


PHP String 参考手册 PHP String 参考手册
阅读全文
以上是鳄鱼CMS为你收集整理的php strchr函数 PHP strcspn() 函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们