forked from uup-dump/api
rename debug.ini to config.ini
This commit is contained in:
parent
f346aebd1a
commit
cf4df29e2f
@ -54,7 +54,7 @@ function genUUID() {
|
|||||||
function sendWuPostRequest($url, $postData) {
|
function sendWuPostRequest($url, $postData) {
|
||||||
$req = curl_init($url);
|
$req = curl_init($url);
|
||||||
|
|
||||||
$proxy = uupDumpApiGetDebug();
|
$proxy = uupDumpApiGetConfig();
|
||||||
if(isset($proxy['proxy'])) {
|
if(isset($proxy['proxy'])) {
|
||||||
curl_setopt($req, CURLOPT_PROXY, $proxy['proxy']);
|
curl_setopt($req, CURLOPT_PROXY, $proxy['proxy']);
|
||||||
}
|
}
|
||||||
@ -120,13 +120,12 @@ function consoleLogger($message, $showTime = 1) {
|
|||||||
fwrite(STDERR, $msg."\n");
|
fwrite(STDERR, $msg."\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
function uupDumpApiGetDebug() {
|
function uupDumpApiGetConfig() {
|
||||||
if(!file_exists('debug.ini')) {
|
if(!file_exists('config.ini')) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$data = parse_ini_file('debug.ini');
|
return parse_ini_file('config.ini');
|
||||||
return $data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function uupApiCheckUpdateId($updateId) {
|
function uupApiCheckUpdateId($updateId) {
|
||||||
|
Loading…
Reference in New Issue
Block a user