如何将 PHP 的 gettext 与 python 的 gettext 结合使用?

发布于 2024-08-11 04:33:17 字数 221 浏览 2 评论 0原文

我有一个应用程序,正在将其部分内容迁移到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小梨窩很甜 2024-08-18 04:33:17

像这样的 php PECL 扩展对您有帮助吗?

http://pecl.php.net/package/python

问候。

Would something like this php PECL extension help you?

http://pecl.php.net/package/python

Regards.

皇甫轩 2024-08-18 04:33:17

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文