Contact: aviboots(AT)netvision.net.il
39,948 questions
51,890 answers
573 users
$string = '_PHP Programming'; if (substr($string, 0, 1) == '_') { echo 'yes'; } else { echo 'no'; } /* run: yes */
$string = '_PHP Programming'; if (strpos($string, '_') === 0) { echo 'yes'; } else { echo 'no'; } /* run: yes */
$string = '_PHP Programming'; if (str_starts_with($string, '_')) { echo 'yes'; } else { echo 'no'; } /* run: yes */