博客列表 >php自定义函数

php自定义函数

幸运儿的博客
幸运儿的博客原创
2017年09月11日 10:58:36607浏览

/**

 * @自动清除smarty缓存

 * @pageroute

 */

function clear_cache()

{

    $cmd = sprintf("sudo rm -fr %s >> %s 2>&1",__APP_CACHE_PATH__ . '/smarty/cache/*',__APP_LOGS_PATH__ . '/cache-clear.log');

    logs(sprintf("cache-clear %s \n",date('Y-m-d H:i:s')),'cache-clear.log');

    shell_exec($cmd);

}


/**

 * @导出数据库数据

 * @pageroute

 */

function exportData()

{

    $sql = "SHOW TABLES";

    $tables = (new \Model\Model())->query($sql)->resultArr();

    //var_dump($tables);die;

    $path = '/var/project/htdocs/wb_test/data';

    $tpl = "<?php\n\n return %s;";


    foreach ($tables as $table) {

        $table = array_pop($table);

        $model = new \Model\Model($table);

        $result = $model->listTable('',0,1000)->resultArr();

        if ($result) {

            $s = var_export($result,true);

        }else {

            $s = 'array()';

        }

        $file = $path . '/' . $table . '.php';

        $content = sprintf($tpl,$s);

        file_put_contents($file,$content);

    }

}


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议