mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-23 16:05:19 +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);
|
|
} |