ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSCORM13PlayerGUI.php File Reference

Go to the source code of this file.

Data Structures

class  ilSCORM13PlayerGUI
 

Functions

 datecmp (array $a, array $b)
 

Function Documentation

◆ datecmp()

datecmp ( array  $a,
array  $b 
)

Definition at line 2153 of file class.ilSCORM13PlayerGUI.php.

2153  : int
2154 {
2155  if (strtotime($a['date']) == strtotime($b['date'])) {
2156  return 0;
2157  }
2158  return (strtotime($a['date']) < strtotime($b['date'])) ? 1 : -1;
2159 }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples