PHP substr() 函數(shù)
PHP substr() 函數(shù)
定義和用法
substr() 函數(shù)返回字符串的一部分。
注釋:如果 start 參數(shù)是負(fù)數(shù)且 length 小于或等于 start,則 length 為 0。
語(yǔ)法
substr(string,start,length)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要返回其中一部分的字符串。 |
start | 必需。規(guī)定在字符串的何處開(kāi)始。
|
length | 可選。規(guī)定要返回的字符串長(zhǎng)度。默認(rèn)是直到字符串的結(jié)尾。
|
技術(shù)細(xì)節(jié)
返回值: | 返回字符串的提取部分,如果失敗則返回 FALSE,或者返回一個(gè)空字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 5.2.2 到 5.2.6 版本中,如果 start 參數(shù)表示負(fù)截?cái)嗷蛘咴浇缥恢?,則返回 FALSE。其他版本則從 start 位置開(kāi)始獲取字符串。 |
更多實(shí)例
實(shí)例 1
使用帶有不同正負(fù)數(shù)的 start 參數(shù):
<?php
echo substr("Hello world",10)."<br>";
echo substr("Hello world",1)."<br>";
echo substr("Hello world",3)."<br>";
echo substr("Hello world",7)."<br>";
echo substr("Hello world",-1)."<br>";
echo substr("Hello world",-10)."<br>";
echo substr("Hello world",-8)."<br>";
echo substr("Hello world",-4)."<br>";
?>
運(yùn)行實(shí)例 ?
實(shí)例 2
使用帶有不同正負(fù)數(shù)的 start 和 length 參數(shù):
<?php
echo substr("Hello world",0,10)."<br>";
echo substr("Hello world",1,8)."<br>";
echo substr("Hello world",0,5)."<br>";
echo substr("Hello world",6,6)."<br>";
echo substr("Hello world",0,-1)."<br>";
echo substr("Hello world",-10,-2)."<br>";
echo substr("Hello world",0,-6)."<br>";
echo substr("Hello world",-2-3)."<br>";
?>

相關(guān)文章
- PHP 常量
- PHP 字符串
- PHP 超級(jí)全局變量
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP Secure E-mails
- PHP 過(guò)濾器
- PHP array_merge() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP end() 函數(shù)
- PHP krsort() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP rsort() 函數(shù)
- PHP sort() 函數(shù)
- PHP Mail 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO