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

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

File:
1 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); 
Note: See TracChangeset for help on using the changeset viewer.