Skip to content

Instantly share code, notes, and snippets.

View felipecwb's full-sized avatar
🎧
🚀

Felipe Francisco felipecwb

🎧
🚀
View GitHub Profile
@felipecwb
felipecwb / unix2DosTime.php
Last active August 29, 2015 14:03
The function unix2DosTime() case someone need.
<?php
function unix2DosTime($unixtime = 0) {
$timearray = $unixtime ? getdate($unixtime) : getdate();
if ($timearray['year'] < 1980) {
$timearray['year'] = 1980;
$timearray['mon'] = 1;
$timearray['mday'] = 1;
$timearray['hours'] = 0;