當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP string strchr()用法及代碼示例


字符串 strchr() 函數是 PHP 的預定義函數。它是 strstr() 函數的別名或可用於搜索給定字符串的第一次出現。

注意:此函數區分大小寫且二進製安全。

用法:

strchr(string,search,before_search);
參數 描述 必需/可選
String 指定要搜索的字符串。 Required
Search 指定要搜索的字符串。如果參數是數字,則返回 ASCII 值。 required
before_search 默認值為布爾值時為假。如果為真,則在第一次出現搜索參數之前返回字符串的解析 Optional

例子1

<?php
//It will return the first occurrence of "PHP" inside "Hello PHP" and return the rest of the string:
$str1="Hello PHP";
$str2="PHP";
echo strchr($str1,$str2);
?>

輸出:

PHP

例子2

<?php
 //It will  Search a string for the ASCII value of "P" and return the rest of the string:
$str="Hello PHP";
echo strchr("PHP Javatpoint!",112);
?>

輸出:

point!

例子3

<?php
 //It will return the part of the string before the first occurence of "PHP":
$str1="Hello PHP";
$str2="PHP";
echo strchr($str1,$str2,true);
?>

輸出:

Hello

參考文獻:

http://php.net/manual/en/function.strchr.php





相關用法


注:本文由純淨天空篩選整理自 PHP string strchr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。