ดาวโหลด บทความ สถิติผู้ใช้ เกี่ยวกับเรา ติดต่อเรา
HomePHP

ereg_replace กับ php 5.3

ค้นหา
ereg('pattern', $string, $matches) 
เป็น
preg_match('/pattern/', $string, $matches)

eregi('pattern', $string, $matches) 
เป็น
preg_match('/pattern/i', $string, $matches)
เปลี่ยน
ereg_replace('pattern', $string, $matches) 
เป็น
preg_replace('/pattern/', $string, $matches)

eregi_replace('pattern', $string, $matches) 
เป็น
preg_replace('/pattern/i', $string, $matches)


25 ก.พ. 58
© 2000 - 2024 palthai.com. All rights reserved.