Close

2020年4月27日(月)

変数内の特定の文字を置き換える

    //  曜日を日本語へ変換
    //  $output内の曜日の英語表記を日本語へ変換
    //$output = str_replace('(Sat)', '(土)', $output);
    $ar_week = array('(Sun)'=>'(日)',
                     '(Mon)'=>'(月)',
                     '(Tue)'=>'(火)',
                     '(Wed)'=>'(水)',
                     '(Thu)'=>'(木)',
                     '(Fri)'=>'(金)',
                     '(Sat)'=>'(土)');
    foreach($ar_week as $key => $week){
        $output = str_replace($key, $week, $output);
    }
PAGE TOP