ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilSCORM13Player.php File Reference

Go to the source code of this file.

Data Structures

class  ilSCORM13Player

Functions

 datecmp ($a, $b)

Function Documentation

datecmp (   $a,
  $b 
)

Definition at line 2141 of file ilSCORM13Player.php.

{
if (strtotime($a['date']) == strtotime($b['date'])) {
return 0;
}
return (strtotime($a['date']) < strtotime($b['date'])) ? 1 :-1;
}