I would like to know if you have how to convert a scientific Excel number with PHP. The number is this "43067" would like to make it into a date.
I would like to know if you have how to convert a scientific Excel number with PHP. The number is this "43067" would like to make it into a date.
Try to do this:
<?php
echo date('d/m/Y', strtotime('1900-01-01 +43067 days')); // Saída: 30/11/2017