php擷取字串前幾位的方法

來源:互聯網
上載者:User
本篇文章主要介紹php擷取字串前幾位的方法,感興趣的朋友參考下,希望對大家有所協助。

在實際項目應用中,經常遇到使用php擷取字串前幾位用來比較、賦值等等。今天給大家分享使用php substr 擷取字串前幾位、後幾位、指定位的用法。

substr

(PHP 4, PHP 5)

substr — 返回字串的子串

說明

string substr ( string $string , int $start [, int $length ] )

返回字串 string 由 start 和 length 參數指定的子字串。

參數

string

輸入字串。

start

如果 start 是非負數,返回的字串將從 string 的 start 位置開始,從 0 開始計算。例如,在字串 “abcdef” 中,在位置 0 的字元是 “a”,位置 2 的字串是 “c” 等等。

如果 start 是負數,返回的字串將從 string 結尾處向前數第 start 個字元開始。

如果 string 的長度小於或等於 start,將返回 FALSE。

Example #1 使用負數 start

<?php$rest = substr(“abcdef”, -1); // 返回 “f”$rest = substr(“abcdef”, -2); // 返回 “ef”$rest = substr(“abcdef”, -3, 1); // 返回 “d”?>


length

如果提供了正數的 length,返回的字串將從 start 處開始最多包括 length 個字元(取決於 string 的長度)。

如果提供了負數的 length,那麼 string 末尾處的許多字元將會被漏掉(若 start 是負數則從字串尾部算起)。如果 start 不在這段文本中,那麼將返回一個Null 字元串。

如果提供了值為 0,FALSE 或 NULL 的 length,那麼將返回一個Null 字元串。

如果沒有提供 length,返回的子字串將從 start 位置開始直到字串結尾。

Example #2 使用負數 length

<?php$rest = substr(“abcdef”, 0, -1); // 返回 “abcde”$rest = substr(“abcdef”, 2, -1); // 返回 “cde”$rest = substr(“abcdef”, 4, -4); // 返回 “”$rest = substr(“abcdef”, -3, -1); // 返回 “de”?>


傳回值

返回提取的子字串, 或者在失敗時返回 FALSE。

更新日誌版本說明

5.2.2 – 5.2.6 If the start parameter indicates the position of a negative truncation or beyond, false is returned. Other versions get the string from start.

範例

Example #3 substr() 基本用法

<?phpecho substr(‘abcdef', 1); // bcdefecho substr(‘abcdef', 1, 3); // bcdecho substr(‘abcdef', 0, 4); // abcdecho substr(‘abcdef', 0, 8); // abcdefecho substr(‘abcdef', -1, 1); // f// 訪問字串中的單個字元// 也可以使用中括弧$string = ‘abcdef';echo $string[0]; // aecho $string[3]; // decho $string[strlen($string)-1]; // f?>


Example #4 substr() casting behaviour

<?phpclass apple {public function __toString() {return “green”;}}echo “1) “.var_export(substr(“pear”, 0, 2), true).PHP_EOL;echo “2) “.var_export(substr(54321, 0, 2), true).PHP_EOL;echo “3) “.var_export(substr(new apple(), 0, 2), true).PHP_EOL;echo “4) “.var_export(substr(true, 0, 1), true).PHP_EOL;echo “5) “.var_export(substr(false, 0, 1), true).PHP_EOL;echo “6) “.var_export(substr(“”, 0, 1), true).PHP_EOL;echo “7) “.var_export(substr(1.2e3, 0, 4), true).PHP_EOL;?>


以上常式會輸出:

1) ‘pe'
2) '54'
3) ‘gr'
4) ‘1'
5) false
6) false
7) ‘1200'

錯誤/異常

錯誤時返回 FALSE。

<?phpvar_dump(substr(‘a', 1)); // bool(false)?>

以上就是本文的全部內容,希望對大家的學習有所協助。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.