使用“printf”;返回字符串,而不是打印它

发布于 2024-12-07 19:26:41 字数 239 浏览 0 评论 0原文

这可能听起来很奇怪,但事实就是如此。

我喜欢在 php 中使用这种构建字符串的技术,

printf(__('This is %1$s, this is %2$s'), myFunction1(), myFunction2());

显然,每当调用函数时,都会直接打印结果,但我想使用这种技术来构建字符串,然后在其他地方使用它。

这可能吗?

谢谢你们。

This may sound strange, but here goes.

I like using this technique of building a string in php

printf(__('This is %1$s, this is %2$s'), myFunction1(), myFunction2());

Obviously this directly prints the results whenever the function is called, but I would like to use this technique to just build a string, and then use it later elsewhere.

Is this possible?

Thanks guys.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

快乐很简单 2024-12-14 19:26:41

使用 sprintf 来执行此操作:

$var = sprintf(__('This is %1$s, this is %2$s'), myFunction1(), myFunction2());

Use sprintf to do this:

$var = sprintf(__('This is %1$s, this is %2$s'), myFunction1(), myFunction2());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文