PHP 不使用 strlen() 的字符串长度

发布于 2024-10-01 22:13:41 字数 400 浏览 13 评论 0原文

刚刚浏览了最新版本的 PHP 编码标准,有一些东西引起了我的注意:

http://svn.php.net/viewvc/php/php-src/trunk/CODING_STANDARDS?revision=296679&view=markup

编码标准 #4 规定“当编写处理字符串的函数,请务必记住 PHP 保存每个字符串的长度属性,并且不应该使用 strlen() 计算它......”

我一直使用 strlen,也许只是晚了,但是如何访问 PHP 中字符串的内置长度属性呢?

Just browsing over the latest release of the PHP coding standards, and something caught my eye:

http://svn.php.net/viewvc/php/php-src/trunk/CODING_STANDARDS?revision=296679&view=markup

Coding standard #4 states that "When writing functions that deal with strings, be sure to remember that PHP holds the length property of each string, and that it shouldn't be calculated with strlen()..."

I've ALWAYS used strlen, and maybe it's just late, but how do you access the built-in length property of a string in PHP?

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

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

发布评论

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

评论(3

别挽留 2024-10-08 22:13:41

他们谈论的是 C 函数,而不是 PHP 函数。 C 函数将在第一个 \0 之后停止计数,但 PHP 字符串可以在末尾以外的其他位置包含 \0

They're talking about the C function, not the PHP function. The C function will stop counting after the first \0, but PHP strings can contain \0 elsewhere other than the end.

葵雨 2024-10-08 22:13:41

已经明确提到,他们谈论的是 PHP 编码标准,而不是 C 函数或 PHP 引擎的扩展。

========================
PHP 编码标准
============== ==========
该文件列出了任何程序员添加或更改的几个标准
PHP 代码,应遵循。由于这个文件是很晚添加的
PHP v3.0 的开发阶段,代码库尚未完全
遵循它,但它是朝着那个大方向发展的。既然我们现在
进入版本 4 后,许多部分已被重新编码以供使用
这些规则。

我仍然没有找到任何有关字符串长度属性的相关信息,但我认为将来如果与新版本的 PHP 相关,他们可能会发布这些信息。

如果有人发现有关此的有用信息,请发布。

Its been clearly mentioned that they talking about PHP Coding standards not about C function or extension of PHP engines.

========================
PHP Coding Standards
========================
This file lists several standards that any programmer, adding or changing
code in PHP, should follow. Since this file was added at a very late
stage of the development of PHP v3.0, the code base does not (yet) fully
follow it, but it's going in that general direction. Since we are now
well into the version 4 releases, many sections have been recoded to use
these rules.

Still I didn't found any relevant information about string length property but I think in future they might release the information if it's related to new version of PHP.

Please post if someone found useful information about this.

长不大的小祸害 2024-10-08 22:13:41

要获取字符串 zval(C 中的变量)的长度,请使用 Z_STRLEN(your_zval)
请参阅 zend_operators.h 第 398 行(PHP 5.4):

#define Z_STRLEN(zval)          (zval).value.str.len

To get the length of a string zval (variable in C) use Z_STRLEN(your_zval)
see zend_operators.h at line 398 (PHP 5.4) :

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