如何将 PHP 的 gettext 与 python 的 gettext 结合使用?
我有一个应用程序,正在将其部分内容迁移到 Django,但 Python 和 PHP 具有不同的字符串格式,例如 PHP 中的 "Hello %1s"
与 "Hello {0} Python 中的“
或 “Hello {name}”
。
我们将维护这两个应用程序一段时间,但是有没有办法在 PHP 中使用 Python 格式,反之亦然?
I have an app that I'm migrating portions of to Django, but Python and PHP have a different string format, e.g., "Hello %1s"
in PHP vs. "Hello {0}"
or "Hello {name}"
in Python.
We'll be maintaining both apps for a while, but is there a way to use the Python format in PHP or vice versa?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的 php PECL 扩展对您有帮助吗?
http://pecl.php.net/package/python
问候。
Would something like this php PECL extension help you?
http://pecl.php.net/package/python
Regards.
PHP 的 gettext 不会扩展/替换 %s - 这是通过输出函数(例如 printf)完成的。
Python 中似乎也是如此。
最重要的是,在 Python 中,您可以使用 %s 来表示字符串,请参阅http://docs.python.org/library/stdtypes.html#string-formatting
所以你应该能够在两者中使用 %s 样式的字符串。
PHP's gettext doesn't expand/substitute %s - this is done by output functions (e.g. printf).
It also appears to be the case in Python.
Most importantly, in Python you can use %s to represent strings, see http://docs.python.org/library/stdtypes.html#string-formatting
So you should be able to use %s-style strings in both.