-3
這是我的代碼在PHP搜索字符串,搜索字段包含空格
<div style="display:inline-block; ">
<?php $a = strtolower($criteria); if (strpos($a, 'fits models from: 11/2000') !== false) {
echo 'Fits models from 2000,'; } ?> </div>
我有空白的問題。 找到字符串,如果我只用「從適合的模型」或者,如果我使用'11/2000' ,而不是兩者合用。我需要他們合併,否則它是無用的。
編輯: 我不能做這樣的事情:
<?php $a = strtolower($criteria);
if (strpos($a, 'fits models from') !== false)
if (strpos($a, '11/2000') !== false) {
echo 'Fits models from 2000,'; } ?> </div>
,因爲我想用它來從文本,這是汽車模型獨立的關鍵因素,從休息和輸出信息。 如果$標準說「符合模型從11/2000,但只適合模型直到06/2002」則輸出「從2000年符合模型」,「適合的模型一直到2000年」,「2002年符合模型」,「模型擬合直到2002年「。
'而不是兩個combined':你是什麼意思呢?你能寫出合併的字符串嗎?白色空間在哪裏出現問題? –
我不能寫'適合11/2000的模型',那麼它什麼都沒有。我可以寫出'適合模型:'的句子的第一部分和第二部分'11/2000',這兩次都回應了我所追求的。白色空間「從適合車型:(空格)11/2000」 – easyquestions
對我來說,它的逆轉... [查看](https://eval.in/821240) –