php實作月份轉英文的方法:先建立一個PHP範例檔;然後建立一個「month_convert 」類別;接著透過「public function 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中文網其他相關文章!