Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
$str = "PHP Java C C++ Python"; $first_word = strtok($str, " "); echo $first_word; /* run: PHP */
$str = "PHP Java C C++ Python"; $arr = explode(' ', $str); echo $arr[0]; /* run: PHP */