10 lines
225 B
PHP
10 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
$response = array();
|
||
|
if(move_uploaded_file($_FILES['file']['tmp_name'], "/link/config/config.json")){
|
||
|
$response['isSuccess'] = true;
|
||
|
}else{
|
||
|
$response['isSuccess'] = false;
|
||
|
}
|
||
|
echo json_encode($response);
|
||
|
?>
|