运行 ❯
获取您的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php echo strpbrk("Hello world!","oe"); ?> <p>"e" is the first occurrence of the specified characters. This function will therefore output "ello world!", because it returns the rest of the string from where it found the first occurrence of "e".</p> </body> </html>
ello world!
"e" 是指定字符的第一次出现。因此,此函数将输出 "ello world!",因为它从找到 "e" 的第一个位置返回字符串的剩余部分。