php實作月份轉換的方法:先建立PHP範例檔;然後透過「public function Month_E($Num){return $this->Month_E[$Num];}」方法實作轉換即可。
推薦:《PHP影片教學》
php數字月份轉換為英文縮寫
實現數字月份到英文月份縮寫的轉換,調換位置就可以倒轉過來,同樣可以實現各種映射。
class month_convert { private $Month_E = array(1 => "Jan", 2 => "Feb", 3 => "Mar", 4 => "Apr", 5 => "May", 6 => "Jun", 7 => "Jul", 8 => "Aug", 9 => "Sep", 10 => "Oct", 11 => "Nov", 12 => "Dec"); public function Month_E($Num) { return $this->Month_E[$Num]; } }
以上是php如何實作月份轉換的詳細內容。更多資訊請關注PHP中文網其他相關文章!