Ignore:
Timestamp:
12/14/12 14:30:35 (12 years ago)
Author:
douglasz
Message:

Ticket #3236 - Melhorias de performance no codigo do Expresso.

Location:
trunk/filemanager/tp/dompdf/www/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/filemanager/tp/dompdf/www/test/long_table.php

    r3019 r7655  
    2525$j_max = 20; 
    2626 
    27 for ( $i = 1; $i <= $i_max; $i++): ?> 
     27for ( $i = 1; $i <= $i_max; ++$i): ?> 
    2828<tr> 
    2929<?php 
    30 for ( $j = 1; $j <= $j_max; $j++) { 
     30for ( $j = 1; $j <= $j_max; ++$j) { 
    3131  $r = (int)(255*$i / $i_max); 
    3232  $b = (int)(255*$j / $j_max); 
  • trunk/filemanager/tp/dompdf/www/test/php_test.php

    r3019 r7655  
    1515$max_x = $pdf->get_width() - 50; 
    1616$max_y = $pdf->get_height() - 50;  
    17 for ( $i = 0; $i < 30; $i++) { 
     17for ( $i = 0; $i < 30; ++$i) { 
    1818  $pdf->circle(rand(50, $max_x), rand(50, $max_y), rand(10, 70), 
    1919               array(rand()/getrandmax(), rand()/getrandmax(), rand()/getrandmax()), 
Note: See TracChangeset for help on using the changeset viewer.