Skip to content

Instantly share code, notes, and snippets.

@bitkorn
Created May 17, 2018 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitkorn/e5ab5aa7ea69f64f3bff46f8705ebc10 to your computer and use it in GitHub Desktop.
Save bitkorn/e5ab5aa7ea69f64f3bff46f8705ebc10 to your computer and use it in GitHub Desktop.
Datatables sort date
<?php
forech($datas as $data) {
echo '<td data-sort="' . date('Y-m-d', $data['unixtimefield']).'">' . date('d.m.Y', $data['unixtimefield']) . '</td>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment