这是我得到的错误:
Allowed memory size of 1258291200 bytes exhausted (tried to allocate 4294967296 bytes)
就在这一行:call_user_func_array(array($query, 'bind_result'), $params);
有趣的是,我已经使用了这个确切的脚本数十次而没有问题。所以我认为它可能是我的服务器/数据库设置中的东西,但是无法想到任何东西。
这是完整的功能:
public function q($query) {
if ($query = $this->_mysqli->prepare($query)) {
if (func_num_args() > 1) {
$x = func_get_args();
$args = array_merge(array(func_get_arg(1)),
array_slice($x, 2));
$args_ref = array();
foreach($args as $k => &$arg) {
$args_ref[$k] = &$arg;
}
call_user_func_array(array($query, 'bind_param'), $args_ref);
}
$query->execute();
if ($query->errno) {
if ($this->_debug) {
echo mysqli_error($this->_mysqli);
debug_print_backtrace();
}
return false;
}
if ($query->affected_rows > -1) {
return $query->affected_rows;
}
$params = array();
$meta = $query->result_metadata();
while ($field = $meta->fetch_field()) {
$params[] = &$row[$field->name];
}
call_user_func_array(array($query, 'bind_result'), $params);
$result = array();
while ($query->fetch()) {
$r = array();
foreach ($row as $key => $val) {
$r[$key] = $val;
}
$result[] = $r;
}
$query->close();
foreach($result as $key=>$resultField){
$result[$key] = (object) $resultField;
}
return $result;
} else {
if ($this->_debug) {
echo $this->_mysqli->error;
debug_print_backtrace();
}
return false;
}
}
请不要告诉我增加内存限制。我正在寻找解决问题的方法,而不是症状。
答案 0 :(得分:1)
原来我不必要地使用longtext
并耗尽了我所有的记忆。切换到mediumtext
解决了问题。