用 PHP 编写的 .po 生成器
外面有这样的事吗?
能够从放置在目录/中的 .php 文件创建 .po 文件的脚本
Is there such a thing out there?
A script that's able to create a .po file from .php files dropped inside a directory/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,没有 PHP i18n 资源提取器。
您只需安装 gettext 工具并使用 exec() 从 PHP 调用 xgettext 命令。尽管用 C 编写的工具不是您最初要求的,但该工具已被很多人使用,因此它的质量比使用正则表达式或其他东西在 PHP 中编写新的东西要好得多。
There are no PHP i18n resource extractor as far as I know.
You just install gettext tools and invoke xgettext command from PHP with exec(). Although the tool written in C is not what you originally asked, the tool is well used by a lot of people so it would be far better quality-wise than writing something new in PHP with regex or something.
这是从 PHP 文件创建 .po 文件的工具
http://www.icanlocalize.com/tools/php_scanner
Here is the tool to create the .po files from PHP files
http://www.icanlocalize.com/tools/php_scanner