运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php echo "W will output: " . strpbrk("Hello world!","W"); echo "<br>"; echo "w will output: " . strpbrk("Hello world!","w"); ?> <p>This function is case-sensitive ("W" and "w" will not output the same).</p> </body> </html>
W 将输出
w 将输出:world!
此函数区分大小写("W" 和 "w" 的输出不同)。