视图中的语言字符串解析

发布于 2024-12-08 10:00:41 字数 451 浏览 0 评论 0原文

我面临以下问题,我有这样的观点(简化):

<div>
    <?php echo $memcached->get('hello'); ?>
</div>
<div>
    <?php echo $memcached->get('world'); ?>
</div>
<div>
    <?php echo $memcached->get('apple'); ?>
</div>

$memcached 是一个 Memcached-DAO,它从缓存服务器检索语言字符串。

我想优化它以进行多重获取,而不是单独检索每个字符串。 (也只获取我需要的并且在正确的位置 - 没有定义之前使用的字符串列表)

我如何在 PHP5 中做到这一点?

I'm faced with the following problem, I have this view (simplified):

<div>
    <?php echo $memcached->get('hello'); ?>
</div>
<div>
    <?php echo $memcached->get('world'); ?>
</div>
<div>
    <?php echo $memcached->get('apple'); ?>
</div>

$memcached is a Memcached-DAO that retrieves the language strings from a caching server.

I want to optimize this to make a multi-get instead of retrieving each string separately. (Also only getting the ones I need and in the right place - without defining a list of strings to use in before)

How could I do this in PHP5?

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

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

发布评论

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

评论(1

爱格式化 2024-12-15 10:00:41

你使用 php 内存缓存吗?

array Memcache::get ( array $keys [, array &$flags ] )

-> http://www.php.net/manual/en/memcache.get.php

Are you using the php memcache?

array Memcache::get ( array $keys [, array &$flags ] )

-> http://www.php.net/manual/en/memcache.get.php

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