Home > Backend Development > PHP Tutorial > 假如有一个长度超过一百万的字符串,用php如何高效的获取他的长度?

假如有一个长度超过一百万的字符串,用php如何高效的获取他的长度?

WBOY
Release: 2016-06-06 20:45:43
Original
1297 people have browsed it

假如有一个长度超过一百万的字符串,用php如何高效的获取他的长度?

回复内容:

假如有一个长度超过一百万的字符串,用php如何高效的获取他的长度?

strlen ...

除非你 确定 php自身提供的功能 真的影响到了你的性能.

实际情况是, 如果你去看鸟哥的这篇大作:
http://www.laruence.com/2008/08/22/412.html

你会看到 字符串 本身的长度已经在zval结构里记录下来了.

一个汉子长度算几?
可以考虑把字符串存成一个文本文档,然后读取文本文档的size,再转换成长度。

不常改的话,获得一次,缓冲起来即可。

“字符串”如果这么说就已经在内存里了, strlen就是最好的答案

更好的方法就是根本别读到内存里,来源是文件就只读文件长度,来源是DB就让DB只返回长度

内存是个问题.哈哈

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template