浏览代码

Backwards compatability for PHP 5. However please upgrade to PHP 7

FusionPBX 5 年之前
父节点
当前提交
5ea3f19af7
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      resources/functions.php

+ 7 - 0
resources/functions.php

@@ -2109,4 +2109,11 @@ function number_pad($number,$n) {
 		}
 	}
 
+//convert bytes to readable human format
+	if (!function_exists('random_int')) {
+		function random_int() {
+			return rand ();
+		}
+	}
+
 ?>