在 PHP 中预分配字符串内存

发布于 2024-10-29 15:40:06 字数 118 浏览 2 评论 0原文

是否可以在 PHP 中为字符串预分配内存或将字符串设置为恒定的固定大小?

我生成了一个随机字符串,它总是 32 个字符长,并且当前在字符串末尾连接一个字符;我认为如果我可以使用恒定大小的字符串,效率会更高。

Is it possible to preallocate memory for a string in PHP or to set a string to a constant fixed size?

I have a random string that is generated, it's always 32 chars long, and it currently concatenates a character on the end of the string; I'm thinking that it would be more efficient if I could use a constant sized string.

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

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

发布评论

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

评论(1

痴者 2024-11-05 15:40:06

您可以使用 str_repeat() 来预生成一个包含 32 个空格的字符串,然后像这样访问每个字符:

$string[3] = 'a';

注意:请参阅 按字符访问和修改字符串在手册中,关于这一点。

我想这会导致更少的内存(重新)分配。

但是,实际上:

  • 您不应该担心这种微优化...
  • 我不确定 PHP 中如何实现字符串(您必须查看其源代码),所以不确定这个想法是否会更好地表现。

You could use str_repeat() to pre-generate a string containing 32 spaces, and, then, access each character like this :

$string[3] = 'a';

Note: see String access and modification by character in tha manual, about that.

I suppose it would cause less memory (re-)allocations.

But, really :

  • you shouldn't worry about that kind of micro-optimization...
  • I'm not sure how strings are implemented in PHP (you'd have to take a look at its source-code), so not sure this idea would be better for performances.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文