ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
ilSCORM13Player.php File Reference

Go to the source code of this file.

Data Structures

class  ilSCORM13Player
 

Functions

 datecmp ($a, $b)
 

Function Documentation

◆ datecmp()

datecmp (   $a,
  $b 
)

Definition at line 2146 of file ilSCORM13Player.php.

2146  {
2147  if (strtotime($a['date']) == strtotime($b['date'])) {
2148  return 0;
2149  }
2150  return (strtotime($a['date']) < strtotime($b['date'])) ? 1 :-1;
2151 }