Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这段代码Carbon::now()->locale('ar_SA')->format('F'),它应该用阿拉伯语显示当前月份,但我得到了"February"
Carbon::now()->locale('ar_SA')->format('F')
"February"
在飞行中,您可以使用Carbon\Carbon::now()->locale("ar_SA")->translatedFormat("F")
Carbon\Carbon::now()->locale("ar_SA")->translatedFormat("F")
文件内的应用程序范围更新语言环境config/app.php
config/app.php
使用包阿拉伯语-laravel4
github.com/jenssegers/date