update returnBytes

avoid warning on string to text multiplication on PHP7
pull/44/head
VASILEIOS SOTIRAS 2017-11-29 16:48:56 +00:00 committed by GitHub
parent 95901159d0
commit 8ae178c465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3060,7 +3060,7 @@ class H5PCore {
* @return int|string
*/
public static function returnBytes($val) {
$val = trim($val);
$val = (int)trim($val);
$last = strtolower($val[strlen($val) - 1]);
$bytes = (int) $val;