使用的php版本是7.0
自己寫了一個mysql procedure
不過我想和這個無關
$str = 'call checkin(:stcode, :imei, @rs)';
$stmt = $cn->prepare($str);
$stmt->bindValue(":stcode", null, PDO::PARAM_NULL);
$stmt->bindParam(":imei", $this->imei);
$stmt->execute();
//在這行報錯
//PHP Fatal error: Allowed memory size of 134217728 bytes
//exhausted (tried to allocate 574448776 bytes)
測試的情況是,如果
$cn->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
這設定就會出錯,如果
setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
就可以執行
並不是說可以執行就算了,用true並不算是利用到preare防止sql inject
有人有遇到類似的情況可以給個方向嗎?
感恩