Contact: aviboots(AT)netvision.net.il
41,551 questions
54,171 answers
573 users
// 'i' after the pattern delimiter mean case-insensitive search preg_match("/php/", "Develop web application with PHP"); // return false (0) preg_match("/php/i", "Develop web application with PHP"); // return true (1)