Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 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)