高級用法示例:
1. 在字符串中查找多個字符串:
<?php
$string = "Hello world";
$needles = array("Hello", "world");
foreach ($needles as $needle) {
$position = stripos($string, $needle);
echo $needle . " found at position " . $position . "\n";
}
// Output:
// Hello found at position 0
// world found at position 6
?>
2. 檢查字符串是否存在:
<?php
$string = "Hello world";
$needle = "world";
if (stripos($string, $needle) !== false) {
echo $needle . " found in " . $string;
} else {
echo $needle . " not found in " . $string;
}
// Output:
// world found in Hello world
?>
這些示例只是 stripos
函數的一部分高級用法,實際上,該函數還具有很多其他功能,您可以根據需要進一步學習和了解。例如,您可以使用該函數來查找字符串並進行替換、刪除等操作,以實現更多的功能。希望本篇文章對您有所幫助。
發布者:彬彬筆記,轉載請註明出處:https://www.binbinbiji.com/zh-hant/php/3058.html