NW_love/modules/Functions.php
2023-02-03 10:31:07 +08:00

16 lines
318 B
PHP

<?php
// 获取数据
include $_SERVER['DOCUMENT_ROOT']."/config.inc.php";
class Functions
{
public function Current_HTTP() {
if ($_SERVER['SERVER_PORT'] == 443) {
return 'https://'.$_SERVER['HTTP_HOST'];
} else {
return 'http://'.$_SERVER['HTTP_HOST'];
}
}
}