Please try below updated code:
$array_test = array();$file = file_get_contents ('./test.txt');$file_array = explode("\n", $file);foreach ($file_array as $line) { $word = trim($line); $array_test[] = $word;}echo $array_test[0];if ($array_test[0][0] == "1") { echo 'first line'; }echo $array_test[1];if ($array_test[1][0] == "2") { echo 'second line'; }