- PHP 教程
- PHP - 首页
- PHP - 简介
- PHP - 安装
- PHP - 历史
- PHP - 特性
- PHP - 语法
- PHP - Hello World
- PHP - 注释
- PHP - 变量
- PHP - Echo/Print
- PHP - var_dump
- PHP - $ 和 $$ 变量
- PHP - 常量
- PHP - 魔术常量
- PHP - 数据类型
- PHP - 类型转换
- PHP - 类型混合
- PHP - 字符串
- PHP - 布尔值
- PHP - 整数
- PHP - 文件与 I/O
- PHP - 数学函数
- PHP - Heredoc 和 Nowdoc
- PHP - 复合类型
- PHP - 文件包含
- PHP - 日期和时间
- PHP - 标量类型声明
- PHP - 返回类型声明
- PHP 运算符
- PHP - 运算符
- PHP - 算术运算符
- PHP - 比较运算符
- PHP - 逻辑运算符
- PHP - 赋值运算符
- PHP - 字符串运算符
- PHP - 数组运算符
- PHP - 条件运算符
- PHP - 展开运算符
- PHP - 空值合并运算符
- PHP - 比较符
- PHP 控制语句
- PHP - 决策
- PHP - If…Else 语句
- PHP - Switch 语句
- PHP - 循环类型
- PHP - For 循环
- PHP - Foreach 循环
- PHP - While 循环
- PHP - Do…While 循环
- PHP - Break 语句
- PHP - Continue 语句
- PHP 函数
- PHP - 函数
- PHP - 函数参数
- PHP - 按值传递
- PHP - 按引用传递
- PHP - 默认参数
- PHP - 具名参数
- PHP - 可变参数
- PHP - 返回值
- PHP - 传递函数
- PHP - 递归函数
- PHP - 类型提示
- PHP - 变量作用域
- PHP - 严格类型
- PHP - 匿名函数
- PHP - 箭头函数
- PHP - 可变函数
- PHP - 局部变量
- PHP - 全局变量
- PHP 超全局变量
- PHP - 超全局变量
- PHP - $GLOBALS
- PHP - $_SERVER
- PHP - $_REQUEST
- PHP - $_POST
- PHP - $_GET
- PHP - $_FILES
- PHP - $_ENV
- PHP - $_COOKIE
- PHP - $_SESSION
- PHP 文件处理
- PHP - 文件处理
- PHP - 打开文件
- PHP - 读取文件
- PHP - 写入文件
- PHP - 文件是否存在
- PHP - 下载文件
- PHP - 复制文件
- PHP - 追加文件
- PHP - 删除文件
- PHP - 处理 CSV 文件
- PHP - 文件权限
- PHP - 创建目录
- PHP - 列出文件
- 面向对象的 PHP
- PHP - 面向对象编程
- PHP - 类和对象
- PHP - 构造函数和析构函数
- PHP - 访问修饰符
- PHP - 继承
- PHP - 类常量
- PHP - 抽象类
- PHP - 接口
- PHP - 特性
- PHP - 静态方法
- PHP - 静态属性
- PHP - 命名空间
- PHP - 对象迭代
- PHP - 封装
- PHP - Final 关键字
- PHP - 重载
- PHP - 克隆对象
- PHP - 匿名类
- PHP Web 开发
- PHP - Web 概念
- PHP - 表单处理
- PHP - 表单验证
- PHP - 表单邮件/URL
- PHP - 完整表单
- PHP - 文件包含
- PHP - GET 和 POST
- PHP - 文件上传
- PHP - Cookie
- PHP - Session
- PHP - Session 选项
- PHP - 发送邮件
- PHP - 净化输入
- PHP - Post-Redirect-Get (PRG)
- PHP - 闪存消息
- PHP 高级
- PHP - MySQL
- PHP.INI 文件配置
- PHP - 数组解构
- PHP - 编码规范
- PHP - 正则表达式
- PHP - 错误处理
- PHP - Try…Catch
- PHP - Bug 调试
- PHP - 针对 C 开发人员
- PHP - 针对 PERL 开发人员
- PHP - 框架
- PHP - Core PHP 与框架
- PHP - 设计模式
- PHP - 过滤器
- PHP - JSON
- PHP - 异常
- PHP - 特殊类型
- PHP - 哈希
- PHP - 加密
- PHP - is_null() 函数
- PHP - 系统调用
- PHP - HTTP 认证
- PHP - 交换变量
- PHP - Closure::call()
- PHP - 过滤后的 unserialize()
- PHP - IntlChar
- PHP - CSPRNG
- PHP - 期望
- PHP - Use 语句
- PHP - 整数除法
- PHP - 已弃用的特性
- PHP - 已移除的扩展和 SAPI
- PHP - PEAR
- PHP - CSRF
- PHP - FastCGI 进程
- PHP - PDO 扩展
- PHP - 内置函数
- PHP 有用资源
- PHP - 速查表
- PHP - 问答
- PHP - 快速指南
- PHP - 在线编译器
- PHP - 有用资源
- PHP - 讨论
PHP - substr() 函数
PHP 的 substr() 函数用于从给定的字符串中提取一部分字符串,并将该提取的(子部分)字符串作为新字符串返回。
它接受两个可选参数 start 和 length。以下是列出的重要要点
- 如果 start 为正数,则返回的字符串将从 start 位置开始(从 0 开始)。
- 如果 start 为负数,则返回的字符串将从字符串末尾的指定位置开始。
- 如果字符串长度小于 start 参数值,则将返回空字符串。
以下是关于 length 参数的关键要点:
- 如果 length 为正数,则返回的字符串将包含从“start”参数开始的那么多字符。
- 如果 length 为负数,则将从字符串末尾省略那么多字符。
- 如果 length 给定且为 0,则将返回空字符串。
- 如果省略 length 或为“null”,则子字符串将从“start”位置开始,并继续到字符串的末尾。
注意:您不能向其传递单个 length 参数,它将始终将其视为提取字符串的起始位置,而不是长度。
语法
以下是 PHP substr() 函数的语法:
substr(string $str, int $start, int $length): string
参数
此函数接受三个参数,如下所示:
- str - 指定输入字符串。
- start - 指定字符串提取应从何处开始。
- length - 指定要提取的新字符串的长度。
返回值
此函数返回原始字符串的一部分字符串。
示例 1
如果给定 start 参数且为 正数,则 PHP substr() 函数从给定的“start index”开始提取字符串,并继续到字符串的末尾:
<?php $str = "Tutorialspoint"; echo "The given string is: $str"; $start = 2; echo "\nThe extraction will start at: $start"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start); ?>
输出
以上程序产生以下输出:
The given string is: Tutorialspoint The extraction will start at: 2 The extracted string is: torialspoint
示例 2
如果同时给出 start 和 length 参数且均为 正数,则此函数从给定的“start index”开始提取字符串,并继续到给定的长度:
<?php $str = "Hey!, I Love PHP!"; echo "The given string is: $str"; $start = 6; $length = 10; echo "\nThe extraction will start at: $start"; echo "\nThe length of the extracted string: $length"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start, $length); ?>
输出
执行上述程序后,将显示以下输出:
The given string is: Hey!, I Love PHP! The extraction will start at: 6 The length of the extracted string: 10 The extracted string is: I Love PHP
示例 3
如果给定的长度为 0,则将返回一个 空 字符串:
<?php $str = "Hello World!"; echo "The given string is: $str"; $start = 1; $length = 0; echo "\nThe extraction will start at: $start"; echo "\nThe length of the extracted string: $length"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start, $length); ?>
输出
以下是上述程序的输出:
The given string is: Hey, I Love PHP! The length of the extracted string: 0 The extracting will start at: 1 The extracted string is:
示例 4
如果给定的 start 参数为 负数,则字符串将从字符串“末尾”的指定位置开始:
<?php $str = "Hello World"; echo "The given string is: $str"; #if you pass start = -1, only "d" will be returned, because no more element to extract, #so it will return only d even you pass length as 5 $start = -5; $length = 5; echo "\nThe extraction will start at: $start"; echo "\nThe length of the extracted string: $length"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start, $length); ?>
输出
执行上述程序后,将显示以下输出:
The given string is: Hello World The extraction will start at: -5 The length of the extracted string: 5 The extracted string is: World
示例 5
如果给定的长度为 负数,则将从字符串末尾“省略”那么多元素:
<?php $str = "Hello From TP!!"; echo "The given string is: $str"; $start = 0; $length = -3; echo "\nThe extraction will start at: $start"; echo "\nThe length of the extracted string: $length"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start, $length); ?>
输出
上述程序生成以下输出:
The extraction will start at: 0 The length of the extracted string: -3 The extracted string is: Hello From T
示例 6
如果省略了“length”参数,则字符串将从指定的 start index 开始,并继续提取到给定字符串的“末尾”:
<?php $str = "Hey!, Welcome to TP"; echo "The given string is: $str"; $start = 6; echo "\nThe extraction will start at: $start"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start); ?>
输出
这将产生以下结果:
The given string is: Hey!, Welcome to TP The extraction will start at: 6 The extracted string is: Welcome to TP
示例 7
如果字符串“length”小于 start 参数值,则将返回一个 空 字符串:
<?php $str = "I Love Coding!"; echo "The given string is: $str"; #an empty string will be returned because start > string length $start = 20; echo "\nThe extraction will start at: $start"; echo "\nThe extracted string is: "; #using substr() function echo substr($str, $start); ?>
输出
以下是上述程序的输出:
The given string is: I Love Coding! The extraction will start at: 20 The extracted string is:
php_function_reference.htm
广告