start

This is an old revision of the document!


This is my first page! HELLO

This is some code:

private function exportCsv($result, $params)  {
    $header = $params["fields"];
    array_unshift($header, "Timestamp");
    
    $result = array_map(function($v)  {
        $time = date("Ymd\THis\Z", $v["time"]);
        $v["time"] = $time;
        return array_values($v);
    }, $result);
    
    $csv = Writer::createFromString("");
    $csv->insertOne($header);
    $csv->insertAll($result);
    
    return $csv;
}

This is a centered box with stuff in it. Blah Blah on second line.

More stuff here.

  • start.1558735020.txt.gz
  • Last modified: 2019-05-24 21:57
  • by andreh