Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261900 bytes) in C:\wamp\www\igadgets\application\includes\base\classes\database.php on line 130
功能是:
function commit() {
return $this->commit();
}
奇怪的是:当我将类更改为不再扩展PDO,而是将其包含在一个变量中时,错误就消失了。
这很好:
function commit() {
return $this->pdo->commit();
}