91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

PHP查找字符串的方法有哪幾種

PHP
小億
240
2024-04-22 09:54:43
欄目: 編程語言

在PHP中,查找字符串的方法有以下幾種:

  1. strpos()函數:用于在字符串中查找一個子字符串,并返回子字符串第一次出現的位置。如果未找到子字符串,則返回false。
$string = 'Hello, World!';
$substring = 'World';
$position = strpos($string, $substring);
echo $position;
  1. strrpos()函數:用于在字符串中查找一個子字符串,并返回子字符串最后一次出現的位置。如果未找到子字符串,則返回false。
$string = 'Hello, World!';
$substring = 'o';
$position = strrpos($string, $substring);
echo $position;
  1. strstr()函數:用于在字符串中查找一個子字符串,并返回子字符串及其后面的所有內容。
$string = 'Hello, World!';
$substring = 'World';
$result = strstr($string, $substring);
echo $result;
  1. stristr()函數:用于在字符串中查找一個子字符串(不區分大小寫),并返回子字符串及其后面的所有內容。
$string = 'Hello, World!';
$substring = 'world';
$result = stristr($string, $substring);
echo $result;
  1. substr()函數:用于從字符串中取出一部分內容,可以指定起始位置和長度。
$string = 'Hello, World!';
$substring = substr($string, 7, 5);
echo $substring;

0
改则县| 博罗县| 贵阳市| 崇明县| 曲靖市| 久治县| 东乡族自治县| 巴林左旗| 乐安县| 政和县| 太仓市| 青浦区| 乌兰察布市| 新宁县| 平顺县| 若尔盖县| 来安县| 桓仁| 安康市| 杨浦区| 四川省| 东乡| 顺昌县| 宣威市| 任丘市| 宝山区| 吉水县| 固始县| 平塘县| 洪雅县| 景泰县| 巍山| 札达县| 巴青县| 罗定市| 武威市| 神农架林区| 铜梁县| 温宿县| 尉犁县| 台湾省|