From cc911b6596e7a9e807aa826b1c95138b6379f536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BA=A6=E5=BD=93=E8=8B=97=E5=84=BF?= Date: Mon, 15 Apr 2013 15:10:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BB=A3=E7=A0=81=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E7=A9=BA=E6=A0=BC=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library/Think/Image.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Library/Think/Image.php b/Library/Think/Image.php index 90e837cb..3db9b3cc 100644 --- a/Library/Think/Image.php +++ b/Library/Think/Image.php @@ -54,9 +54,8 @@ class Image { } // 调用驱动类的方法 - static public function __callStatic($method, $params){ + static public function __callStatic($method, $params){ self::$im || self::init(); - return call_user_func_array([self::$im, $method], $params); - } - -} \ No newline at end of file + return call_user_func_array([self::$im, $method], $params); + } +}