How to convert CSV big number 6.89349E+11 into number with php

I am importing csv data into my database with php, but big numbers like 6.89349E+11 are saved as shown below.

How to transform them to number or string in a complete way?

enter image description here


Solution 1:

I fond solution simply changing data type of database column from int to BIGINT and increase legnth from 11 to 20