Код: Выделить всё
$pole = explode("\n", file_get_contents('obce.txt'));
echo $pole[1]; //in obce.txt it is Test
Код: Выделить всё
$pole[1] = "Test";
echo $pole[1];
Подробнее здесь: https://stackoverflow.com/questions/161 ... line-index
Код: Выделить всё
$pole = explode("\n", file_get_contents('obce.txt'));
echo $pole[1]; //in obce.txt it is Test
Код: Выделить всё
$pole[1] = "Test";
echo $pole[1];