Subversion Repositories oidinfo_api

Compare Revisions

Regard whitespace Rev 13 → Rev 12

/trunk/uuid_utils.inc.phps
3,7 → 3,7
/*
* UUID utils for PHP
* Copyright 2011-2020 Daniel Marschall, ViaThinkSoft
* Version 2020-09-12
* Version 2020-02-28
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
365,7 → 365,6
 
# On Debian: aptitude install uuid-runtime
$out = array();
$ec = -1;
exec('uuidgen -t', $out, $ec);
if ($ec == 0) return $out[0];
 
428,7 → 427,6
 
# On Debian: aptitude install uuid-runtime
$out = array();
$ec = -1;
exec('uuidgen -r', $out, $ec);
if ($ec == 0) return $out[0];