When we have to return only one value parsed by sscanf / fscanf, should we assign a list of one variable or use optional assigned values?
E.G.
list($number) = fscanf($handle, "%d\n")
or
fscanf($handle, "%d\n", $number)
Is there any difference in execution speed of these expressions?