This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* класс импорта csv | |
*/ | |
class ExportCSV{ | |
private $filename; // имя файла | |
private $limitflag; // флаг использования лимитов | |
private $limit_start; // лимит стартовая позиция |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// функция изменения формата даты и времени формат d.m.y.H.i | |
function get_date( $date ){ | |
if(! $date) return 'неизвестно'; | |
$DATENOW = date('d.m.y.H.i'); | |
$firtsline = explode('.', $DATENOW); | |
$DAYNOW = $firtsline[0] * 1; | |
$MOUNTHNOW = $firtsline[1] * 1; |