mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-04-06 12:45:13 +08:00
10 lines
204 B
PHP
10 lines
204 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if (!defined('IN_DZZ')) {
|
||
|
|
exit('Access Denied');
|
||
|
|
}
|
||
|
|
|
||
|
|
function build_cache_app_test() {
|
||
|
|
$data = DB::fetch_all("select * from %t where 1", array('test'), 'testid');
|
||
|
|
savecache('testdatas', $data);
|
||
|
|
}
|