我正在寻找一种简单的方法来改变一周中的日子。我使用下面的简单代码来呼叫周一,周二的当天,但我需要用法语,我已经尝试过设置语言环境等,但这对我不起作用。 我认为阵列可以完成这项工作,但是再一次,我无法用我有限的知识来实现它。
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))
答案 0 :(得分:1)
您应该使用strftime()
功能 - http://php.net/manual/ru/function.strftime.php。 date()
不依赖于语言环境。
答案 1 :(得分:0)
我希望这会有所帮助
<?php
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %A and");