JQuery library update, class test update

Add test for time to string and string to time convert functions
This commit is contained in:
Clemens Schwaighofer
2015-03-26 11:26:39 +09:00
parent 54521c0e2d
commit 474d6810f4
11 changed files with 405 additions and 346 deletions

View File

@@ -147,7 +147,10 @@
print "OTHER SCHEMA INSERT STATUS: ".$status." | PK NAME: ".$basic->pk_name.", PRIMARY KEY: ".$basic->insert_id."<br>";
// time string thest
print "TIME STRING TEST: ".$basic->TimeStringFormat(5887998.33445)."<br>";
$timestamp = 5887998.33445;
$time_string = $basic->TimeStringFormat($timestamp);
print "TIME STRING TEST: ".$time_string."<br>";
print "REVERSE TIME STRING: ".$basic->StringToTime($time_string);
// magic links test
print $basic->magic_links('user@bubu.at').'<br>';