How to Set Jst time using CDbExpression

Please help me how to set Japan standarand time using CDbExpression(‘now()’),When i am using CDbExpression(‘now()’) its store UTC time how to Change its JST time?

My server time is JST time Is it possible to store server time using CDbExpression?

Did you read this article? http://www.yiiframework.com/wiki/564/i18n-all-in-one-format-and-timezone-conversions-for-date-time-timestamp-and-datetime/

Try this code in config/main.php




<?php

......

return array(

    'timeZone' => 'Asia/Tokyo'

    // Other configuration....

);