Ignore:
Timestamp:
2011/03/07 12:25:01 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/util/SC_Utils.php

    r20507 r20534  
    172172    function sfDispError($type) { 
    173173 
    174         require_once(CLASS_EX_REALDIR . "page_extends/error/LC_Page_Error_DispError_Ex.php"); 
     174        require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_DispError_Ex.php'; 
    175175 
    176176        $objPage = new LC_Page_Error_DispError_Ex(); 
     
    185185    function sfDispSiteError($type, $objSiteSess = "", $return_top = false, $err_msg = "") { 
    186186 
    187         require_once(CLASS_EX_REALDIR . "page_extends/error/LC_Page_Error_Ex.php"); 
     187        require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_Ex.php'; 
    188188 
    189189        $objPage = new LC_Page_Error_Ex(); 
     
    206206     */ 
    207207    function sfDispException($debugMsg = null) { 
    208         require_once(CLASS_EX_REALDIR . "page_extends/error/LC_Page_Error_SystemError_Ex.php"); 
     208        require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_SystemError_Ex.php'; 
    209209 
    210210        $objPage = new LC_Page_Error_SystemError_Ex(); 
     
    14131413    // 指定したURLに対してPOSTでデータを送信する 
    14141414    function sfSendPostData($url, $arrData, $arrOkCode = array()){ 
    1415         require_once(DATA_REALDIR . "module/Request.php"); 
     1415        require_once DATA_REALDIR . 'module/Request.php'; 
    14161416 
    14171417        // 送信インスタンス生成 
     
    19361936     */ 
    19371937    function sfGetRandomString($length = 1) { 
    1938         require_once(dirname(__FILE__) . '/../../module/Text/Password.php'); 
     1938        require_once dirname(__FILE__) . '/../../module/Text/Password.php'; 
    19391939        return Text_Password::create($length); 
    19401940    } 
     
    23132313            return json_encode($value); 
    23142314        } else { 
    2315             require_once(dirname(__FILE__) . '/../../module/Services/JSON.php'); 
     2315            require_once dirname(__FILE__) . '/../../module/Services/JSON.php'; 
    23162316            GC_Utils_Ex::gfPrintLog(' *use Services_JSON::encode(). faster than using the json_encode!'); 
    23172317            $objJson = new Services_JSON(); 
     
    23362336            return json_decode($json); 
    23372337        } else { 
    2338             require_once(dirname(__FILE__) . '/../../module/Services/JSON.php'); 
     2338            require_once dirname(__FILE__) . '/../../module/Services/JSON.php'; 
    23392339            GC_Utils_Ex::gfPrintLog(' *use Services_JSON::decode(). faster than using the json_decode!'); 
    23402340            $objJson = new Services_JSON(); 
Note: See TracChangeset for help on using the changeset viewer.