mysql_fetch_lengths — Returns the length of the columns of the current row
unsigned long * mysql_fetch_lengths(MYSQL_RES * result);
The mysql_fetch_lengths()
function returns an array containing the lengths of every column of the current row within the result set.
An array of unsigned long integers representing the size of each column (not including terminating zero character) or NULL
if an error occured.