我試圖使用strpos在另一個字符串中找到一個字符串,但由於某種原因,它不能用於某個字符串,即使它在爲另一個字符串工作。我究竟做錯了什麼?strpos對特定字符串不起作用
<?php
if (strpos("show me how to dance", "show me")) {
echo "true1";
}
if (strpos("my name is name", "name")) {
echo "true2";
}
?>
結果:
true2
預期結果:
true1true2
不可能!你的代碼顯示爲'true2'。因爲位置'0'評估爲'假'。 – AbraCadaver
http://ideone.com/7f88Py ** true2 ** – 2016-03-07 21:14:44
@Dagon對不起,這是一個錯字。我的意思是真實2。但我期待true1和true2。 – frosty