22 lines
336 B
PHP
22 lines
336 B
PHP
|
<?php
|
||
|
|
||
|
require_once __DIR__.'/../../include/const';
|
||
|
|
||
|
function api_fetch(){
|
||
|
|
||
|
/* [1] Fetch & generate useful data from features
|
||
|
=========================================================*/
|
||
|
/* (1) Default data : access */
|
||
|
$data = [
|
||
|
'access' => file_get_contents(LOG_DIR.'/access.log')
|
||
|
];
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
echo api_fetch();
|
||
|
|
||
|
|
||
|
|
||
|
?>
|