PHP 不使用 strlen() 的字符串长度
刚刚浏览了最新版本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
他们谈论的是 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.已经明确提到,他们谈论的是 PHP 编码标准,而不是 C 函数或 PHP 引擎的扩展。
我仍然没有找到任何有关字符串长度属性的相关信息,但我认为将来如果与新版本的 PHP 相关,他们可能会发布这些信息。
如果有人发现有关此的有用信息,请发布。
Its been clearly mentioned that they talking about PHP Coding standards not about C function or extension of PHP engines.
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.
要获取字符串 zval(C 中的变量)的长度,请使用 Z_STRLEN(your_zval)
请参阅 zend_operators.h 第 398 行(PHP 5.4):
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) :