27 lines
419 B
PHP
Executable File
27 lines
419 B
PHP
Executable File
<?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(DATA_DIR.'/access.dat'),
|
|
'feature' => []
|
|
];
|
|
|
|
/* (2) Fetch for each feature which generates data */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
echo api_fetch();
|
|
|
|
|
|
|
|
?>
|