Skip to content

Instantly share code, notes, and snippets.

View lepig's full-sized avatar
🎯
Focusing

Geek Cho lepig

🎯
Focusing
  • Global
View GitHub Profile
@lepig
lepig / test.php
Last active February 9, 2017 09:58
[PHP Exception]异常 #tags: 异常
<?php
set_exception_handler('MyException::custException'); //我自己定义的顶层异常处理函数
class MyException {
function __construct($file = null) {
$this->file = $file;
try {
if (! file_exists($file)) {
@lepig
lepig / do.php
Last active January 12, 2017 08:26
Export CSV file
<?php
date_default_timezone_set('PRC');
$db = mysqli_connect('localhost', 'user', 'password', 'dbname', 3306);
$action = $_GET['action'];
switch ($action) {
case 'import':
# code...
break;