字符串 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 strcoll()用法及代碼示例
- PHP string strcasecmp()用法及代碼示例
- PHP string strcmp()用法及代碼示例
- PHP string str_repeat()用法及代碼示例
- PHP string str_shuffle()用法及代碼示例
- PHP string str_ireplace()用法及代碼示例
- PHP string str_split()用法及代碼示例
- PHP string str_rot13()用法及代碼示例
- PHP string str_pad()用法及代碼示例
- PHP string strip_tags()用法及代碼示例
- PHP string str_word_count()用法及代碼示例
- PHP string sha1()用法及代碼示例
- PHP string setlocale()用法及代碼示例
- PHP string sha1_file()用法及代碼示例
- PHP string similar_text()用法及代碼示例
- PHP string rtrim()用法及代碼示例
- PHP string printf()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP string strchr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。