1 Star 23 Fork 6

dazhaozhao/dictionary

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
common.php 474 Bytes
一键复制 编辑 原始数据 按行查看 历史
dazhaozhao 提交于 2018-07-07 21:22 . 第一个版本
<?php
/**
* 公共函数库
*/
/**
* 展示信息
* @param string $msg 提示信息
* @param string $url 跳转地址
*/
function show_msg($msg,$url='')
{
echo '<script>';
echo "alert('$msg');";
if (empty($url)) {
echo 'hisotry.go(-1);';
}else{
echo "window.location.href='$url'";
}
echo '</script>';
exit;
}
function time_format($file)
{
$temp=explode('.',$file);
return date('Y-m-d H:i:s',$temp[0]);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/dazhaozhao/dictionary.git
git@gitee.com:dazhaozhao/dictionary.git
dazhaozhao
dictionary
dictionary
master

搜索帮助