Update functions.php
This commit is contained in:
@@ -106,16 +106,22 @@
|
|||||||
$uuid = null;
|
$uuid = null;
|
||||||
$which_uuidgen = shell_exec("which uuidgen");
|
$which_uuidgen = shell_exec("which uuidgen");
|
||||||
if (strlen($which_uuidgen) > 0) {
|
if (strlen($which_uuidgen) > 0) {
|
||||||
if (PHP_OS == 'FreeBSD') {
|
if (PHP_OS === 'FreeBSD') {
|
||||||
$uuid = trim(shell_exec("uuidgen"));
|
$uuid = trim(shell_exec("uuidgen"));
|
||||||
}
|
}
|
||||||
if (PHP_OS == 'Linux') {
|
if (PHP_OS === 'Linux') {
|
||||||
$uuid = trim(shell_exec("uuidgen -r"));
|
$uuid = trim(shell_exec("uuidgen -r"));
|
||||||
}
|
}
|
||||||
|
if (!is_uuid($uuid)) {
|
||||||
|
$uuid = trim(shell_exec("uuidgen"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!is_uuid($uuid) && PHP_OS == 'Linux') {
|
if (!is_uuid($uuid) && PHP_OS === 'Linux') {
|
||||||
$uuid = trim(file_get_contents('/proc/sys/kernel/random/uuid'));
|
$uuid = trim(file_get_contents('/proc/sys/kernel/random/uuid'));
|
||||||
}
|
}
|
||||||
|
if (function_exists('com_create_guid') === true && PHP_OS === 'Windows') {
|
||||||
|
$uuid = trim(com_create_guid(), '{}');
|
||||||
|
}
|
||||||
return $uuid;
|
return $uuid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user