From b7c916bc4df8dd86aa24f9f9e67e823ab340bf85 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 7 Feb 2017 03:07:23 -0500 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B8=B8=E7=94=A8=E5=87=BD?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/.htaccess | 1 - application/common.php | 42 ++++++++++++++++++++++++++++++++---------- 2 files changed, 32 insertions(+), 11 deletions(-) delete mode 100644 application/.htaccess diff --git a/application/.htaccess b/application/.htaccess deleted file mode 100644 index 3418e55a6..000000000 --- a/application/.htaccess +++ /dev/null @@ -1 +0,0 @@ -deny from all \ No newline at end of file diff --git a/application/common.php b/application/common.php index 55d22f266..211e06581 100644 --- a/application/common.php +++ b/application/common.php @@ -1,12 +1,34 @@ -// +---------------------------------------------------------------------- -// 应用公共文件 +/** + * 打印输出数据到文件 + * @param mixed $data + * @param bool $replace + * @param string|null $pathname + */ +function p($data, $replace = false, $pathname = NULL) { + is_null($pathname) && $pathname = RUNTIME_PATH . date('Ymd') . '.txt'; + $str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, TRUE) : var_export($data, TRUE)) . "\n"; + $replace ? file_put_contents($pathname, $str) : file_put_contents($pathname, $str, FILE_APPEND); +} + +/** + * 安全URL编码 + * @param array $data + * @return string + */ +function encode($data) { + return str_replace(array('+', '/', '='), array('-', '_', ''), base64_encode(serialize($data))); +} + +/** + * 安全URL解码 + * @param string $string + * @return string + */ +function decode($string) { + $data = str_replace(array('-', '_'), array('+', '/'), $string); + $mod4 = strlen($data) % 4; + ($mod4) && $data .= substr('====', $mod4); + return unserialize(base64_decode($data)); +} \ No newline at end of file