การเช็คคำ อยากรู้ว่าจะใช้ฟังชั้นอะไรช่วยในการตรวจสอบคำอ่ะคับ
Code (PHP)
<?php
$mystring = "wxyz";
$pos = strrpos($mystring, "b");
if ($pos === false) {
echo "not found<br>";
}
$mystring = "abcdef";
$pos = strrpos($mystring, "b");
if (is_bool($pos) && !$pos) {
echo "not found<br>";
}
?>
PHP strrpos()
Date :
2009-09-18 11:26:34
By :
webmaster
ขอบคุณครับ
Date :
2009-09-18 11:32:35
By :
reda_008
หุหุ พี่วิน เก่งโครต เทพๆๆๆๆ
Date :
2009-09-18 12:19:04
By :
Dragons_first
แต่ถ้า
Code (PHP)
<?php
$mystring = "abcdef";
$pos = strrpos($mystring, "a");
if (is_bool($pos) && !$pos) {
echo "not found<br>";
}
?>
แต่ $pos จะเจอตำแหน่งแรก เป็น 0 ซึ่ง if ตรวจสอบว่า เป็น เท็จ อย่างนี้ เราจะแก้ไข อย่างไรครับ ผมเคยเจอปัญหา แบบนี้ เหมือนกันครับ
Date :
2009-09-18 12:57:15
By :
nilas
เพิ่มช่องว่าง ข้างหน้าเลยอ่ะ ง่ายดี
555+
Code (PHP)
<?php
$mystring = " "."wxyz";
$pos = strrpos($mystring, "w");
if ($pos) {
echo "not found1<br>";
}else{
echo "not found2<br>";
}
?>
Date :
2009-09-18 13:35:00
By :
reda_008
Load balance : Server 04