How could you read a certain line from a file, so for example you have a file:
row1column1|row1column2|row1column3|row1column4|row1column5
row2column1|row2column2|row2column3|row2column4|row2column5
row3column1|row3column2|row3column3|row3column4|row3column5
row4column1|row4column2|row4column3|row4column4|row4column5
I know you can read through the lines with fgets() but I want to know whether there is a way to get only a certain line without having to load the whole file (or any other rows) into php (imagine a file with 1000+ rows).
EDIT: Note that each line does not have a fixed size.