執行 ❯
獲取您
自己的 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" 將不會輸出相同的內容)。