如何在 YII Framework V1 中設定 main.php 檔案

在 YII Framework Version 1 的版本中。

你將設定 main.php 檔案。

檔案路徑: application_name / protected / config / main.php

<?php
return array(
    // Set Application Name
    'name'              => "Applicaiton Name",
    
    // Set Default Controller
    'defaultController' => 'site/login',
    
    // Set Language
    'language'          => 'in',
    
    // Set Language for messages and views
    'sourceLanguage'    => 'en',
    
    // Set Time Zone
    'timeZone' => 'Asia/Calcutta',
    
    //Charset to use
    'charset'=>'utf-8',

    // preloading 'log' component
    'preload'=>array('log'),
    
    //application-level parameters that can be accessed
    'params'=> array(
        $documentUrl = $baseUrl,    // Document URL
        $documentPath = $_SERVER['DOCUMENT_ROOT'] . '/', // Document Path
    ),
);
?>

支援的時區列表 - PHP