Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将表(3 列)的值存储在 3 个不同的数组中,每个数组包含 1 列的信息。有超过6000个条目。但我得到一个错误:
“致命错误:第 17 行 /Applications/MAMP/htdocs/test_array.php 中允许的内存大小为 33554432 字节已用尽(尝试分配 35 个字节)”
我应该怎么办?
ini_set('memory_limit', '64M');会将您的内存从当前的 32MB 增加到 64MB。将该行放在文件的顶部。如果您需要更多内存,请调整值。
ini_set('memory_limit', '64M');
您也可以直接在 mysql 中执行计算。
例如,
从 tbl 中选择总和(column_1)