如何在php中更改星期几的语言?

时间:2016-09-07 13:30:36

标签: php

我正在寻找一种简单的方法来改变一周中的日子。我使用下面的简单代码来呼叫周一,周二的当天,但我需要用法语,我已经尝试过设置语言环境等,但这对我不起作用。 我认为阵列可以完成这项工作,但是再一次,我无法用我有限的知识来实现​​它。

import os

import tarfile
import glob

thirdBloc = 'srm01' #Then, that must be 'srm02', or 'srm03'
for f in glob.glob(os.path.join('C://Users//asediri//Downloads/srm/', thirdBloc, '*.tar.gz'):
    tar = tarfile.open(f)
    tar.extractall(os.path.join('C://Users//asediri//Downloads/srm/', thirdBloc))

2 个答案:

答案 0 :(得分:1)

您应该使用strftime()功能 - http://php.net/manual/ru/function.strftime.phpdate()不依赖于语言环境。

答案 1 :(得分:0)

我希望这会有所帮助

<?php
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %A and");

for more info click here