ผมอยากตรวจสอบว่าในตัวแปล A มีเครื่องหมาย + หรือไม่ ต้องเขียนยังไงหรอครับ
Tag : - - - -
Date :
19 ส.ค. 2551 10:51:55
By :
lermjunior
View :
1065
Reply :
3
No. 1
Guest
$A = "500+300"
$findme = '+';
$pos1 = stripos($A, $findme);
if ($pos1=== false)
{
echo "The string '$findme' was not found in the string '$A' <br>";
}
else
{
echo "The string '$findme' was found in the string '$A' <br>";
}
ลองเอาไปดัดแปลงดูนะครับ แล้วก็ระวังตงเครื่องหมาย === นะครับ ต้องมี 3 อันนะ
Date :
19 ส.ค. 2551 11:22:21
By :
ผ่านมา
No. 2
Guest
Hello ผ่านมา
According conventional wisdom of you. I want to say Thank you very much.
You can help me evry more.