mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
SQLite database, Entities, position, health
This commit is contained in:
@ -38,6 +38,15 @@ console("[DEBUG] Endianness: ".(ENDIANNESS === LITTLE_ENDIAN ? "Little Endian":"
|
||||
|
||||
class Utils{
|
||||
|
||||
/*public static function hashCode($str){
|
||||
$h = 0;
|
||||
$len = strlen($str);
|
||||
for($i = 0; $i < $len; ++$i) {
|
||||
$h = 31 * $h + $str[$i];
|
||||
}
|
||||
return $h;
|
||||
}*/
|
||||
|
||||
public static function getOS(){
|
||||
$uname = strtoupper(php_uname("s"));
|
||||
if(strpos($uname, "WIN") !== false){
|
||||
|
Reference in New Issue
Block a user