ILIAS  release_8 Revision v8.23
class.ilSCORM13PlayerGUI.php File Reference

Go to the source code of this file.

Data Structures

class  ilSCORM13PlayerGUI
 ForgottenDebugOutputInspection More...
 

Functions

 datecmp (array $a, array $b)
 

Function Documentation

◆ datecmp()

datecmp ( array  $a,
array  $b 
)

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

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