PHP字符串函数 strstr()使用详解
程序员文章站
2022-03-22 19:06:02
定义 strstr 按分隔符截取字符串 语法 返回 haystack 字符串从 needle 第一次出现的位置开始到 haystack 结尾的字符串。包括needle。 不存在则返回false。 如果仅仅想确定 needle 是否存在于 haystack 中,可以使用速度更快、耗费内存更少的 str ......
定义
strstr - 按分隔符截取字符串
语法
strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] ) : string
返回 haystack 字符串从 needle 第一次出现的位置开始到 haystack 结尾的字符串。包括needle。
不存在则返回false。
如果仅仅想确定 needle 是否存在于 haystack 中,可以使用速度更快、耗费内存更少的 strpos() 函数。
before_needle
如果为true,则返回 needle 在 haystack 中的位置之前的部分,不包括needle。
示例
<?php $email = 'name@example.com'; $domain = strstr($email, '@'); echo $domain; // @example.com $user = strstr($email, '@', true); // 从 php 5.3.0 起 echo $user; // name,不包含@ ?>
推荐阅读
-
PHP中MD5函数使用实例代码
-
jQuery的next()函数的使用详解
-
php中关于魔法函数以及魔法常量的使用详解
-
php的crc32函数使用时需要注意的问题(不然就是坑)
-
PHP中substr_count()函数获取子字符串出现次数的方法,phpsubstr_count
-
PHP中计算字符串相似度的函数代码_PHP
-
PHP stream_context_create()函数的使用示例,createfile函数
-
ThinkPHP的截取字符串函数无法显示省略号的解决方法_php实例
-
PHP strstr 函数判断字符串是否否存在的实例代码_PHP
-
PHP使用zlib扩展实现GZIP压缩输出的方法详解