摘要: <!DOCTYPE html><html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>js实现倒计时60秒的简单代码(推荐)</title> <script 阅读全文
posted @ 2018-12-08 17:32 Kris-Q 阅读(550) 评论(0) 推荐(0)
摘要: <html><body> <span>look this:</span><span id="nums">10000</span> </body> </heml> <script type="text/javascript"> var totalNum = 10000; var nums = 0; / 阅读全文
posted @ 2018-12-08 17:29 Kris-Q 阅读(5283) 评论(0) 推荐(0)
摘要: <html> <body> <span>倒计时30分钟:</span><span id="clock">00:30:00:00</span> </body> </heml> <script type="text/javascript"> //秒表倒计时控制var normalelapse = 100 阅读全文
posted @ 2018-12-08 17:00 Kris-Q 阅读(1170) 评论(0) 推荐(0)
摘要: Php错误处理 Php错误级别: E_ERROR 致命错误,会终止脚本运行.值为1 E_WARNING 警告错误,给出提示,不会终止运行值为2 E_PARSE 编译时的语法解析错误,解析错误仅仅由分析器产生。值为4 E_NOTICE 运行时通知错误,表示脚本可能会遇到错误的情况 值为8 E_CORE 阅读全文
posted @ 2018-12-08 16:33 Kris-Q 阅读(405) 评论(0) 推荐(0)
摘要: /** * 获取指定目录下的所有文件 * @param null $path * @return array */ public function getFileByPath($path = null) { $dirs = new \FilesystemIterator($path); $arr = 阅读全文
posted @ 2018-12-08 11:04 Kris-Q 阅读(640) 评论(0) 推荐(0)