OSX php.ini 内存限制
当您使用最新版本的 OSX (10.6) 时,8M 的内存限制(或您设置的任何值)是否意味着您现在运行的是 8 000 000 字节而不是 8 388 608?
When you are using the latests version of OSX (10.6), does the memory limit of 8M (or whatever you have yours set to) mean that you are now running with 8 000 000 bytes rather than 8 388 608?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 常见问题解答中有一个关于 简写符号:
因此,就您而言,8M 并不意味着 8 000 000 字节,而是意味着 8 388 608 字节。
(这与您使用的操作系统无关:计算是由 PHP 完成的,
memory_limit
也是由 PHP 实现的)There is an entry in the PHP FAQ about shorthand notation :
So, in your case, 8M doesn't mean 8 000 000 bytes, but does mean 8 388 608 bytes.
(This doesn't depend on the operating system you are using : the calculation is done by PHP, and
memory_limit
is implemented by PHP too)