start

This is an old revision of the document!


This is my first page! HELLO

My first header

This is text under the first header. I wonder how you make a paragraph. Do I really need to write code to do that? There's probably a character..

Test secion

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.1558735534.txt.gz
  • Last modified: 2019-05-24 22:05
  • by andreh