foreach($keywords as $keyword){
$pos = strpos($text, $keyword);if($pos ===false){}else{
echo "The string '$keyword' was found in the string.";
echo " and exists at position $pos<br>";}}
لكن أحصل على رسالة الخطأ التالية:
The string Spotify was found in the string. and exists at position 39.
السؤال
محمد بوسكوري
أريد تضمين خاصية تتيح للمستخدم البحث عن نص داخل قطعة نصية أخرى، فمثلا أريد البحث عن النص التالي:
DateAmountDescription 24-01-2016$ 14,99Spotify 23-01-2016$ 10,50Netflix 23-01-2016$ 5,50Amazon
وقد وجدت هذا الكود الخاص بمقارنة نصين:
لكن أحصل على رسالة الخطأ التالية:
The string Spotify was found in the string. and exists at position 39.
كيف لي بحل هذا المشكل؟
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.