ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSCORM13PlayerGUI.php File Reference

Go to the source code of this file.

Data Structures

class  ilSCORM13PlayerGUI
 

Functions

 datecmp ($a, $b)
 

Function Documentation

◆ datecmp()

datecmp (   $a,
  $b 
)

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

References Vendor\Package\$a, and Vendor\Package\$b.

2138 {
2139  if (strtotime($a['date']) == strtotime($b['date'])) {
2140  return 0;
2141  }
2142  return (strtotime($a['date']) < strtotime($b['date'])) ? 1 :-1;
2143 }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples