Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function get_index($str1, $str2) { return strpos($str1, $str2); } $str1 = "c++ php java c"; $str2 = "php"; echo get_index($str1, $str2); /* run: 4 */