|
|
|
Fatal error: Allowed memory size of 25165824 bytes exhausted (tried to allocate 24576 bytes) |
|
|
|
|
|
|
|
error นี้ แต่ผมไม่รู้ว่าผิดตรงไหน
Fatal error: Allowed memory size of 25165824 bytes exhausted (tried to allocate 24576 bytes) in C:\AppServ\www\mfes\admin\fpdf.php on line 93
Code (PHP)
$fill=false;
foreach($data as $row)
{
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
$this->Cell($w[4],6,number_format($row[4]),'LR',0,'R',$fill);
$this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
Tag : PHP
|
|
|
|
|
|
Date :
2013-12-24 15:25:11 |
By :
wita |
View :
1019 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค้ดไม่ได้ผิดอะไรครับ แต่โปรแกรมของคุณใช้ RAM มากเกินกว่าที่กำหนดไว้ใน php.ini (ในส่วนของ memory_limit) ครับ
|
|
|
|
|
Date :
2013-12-24 16:11:25 |
By :
K |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเพิ่มขนาด memory ดูคับ
.htaccess
php_value memory_limit 64M
php
ini_set('memory_limit', '64M');
ลองใช้ตัวใดตัวนึงดูคับ ลืมๆ แล้ว
|
|
|
|
|
Date :
2013-12-24 18:00:23 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|