Increase memory limit

前端 未结 4 828
一生所求
一生所求 2021-01-22 08:45

My php script creates PDF on fly, the data comes from mysql db table it works fine till 30 records but more than that it says

I am dompdf from http://code.google.com/p/

4条回答
  •  遥遥无期
    2021-01-22 09:26

    use the following on the top of your page:

     ini_set('max_execution_time', 3000);
     ini_set('memory_limit','16M');
    

    This setting is valid for your current script only.

提交回复
热议问题