Ignore:
Timestamp:
12/18/12 16:15:29 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Correcoes para Performance: Function Within Loop Declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/filemanager/tp/dompdf/include/text_frame_reflower.cls.php

    r6057 r7673  
    134134    reset($words); 
    135135 
    136     for ($i = 0; $i < count($words); $i += 2) { 
     136    $words_count = count($words); 
     137    for ($i = 0; $i < $words_count; $i += 2) { 
    137138      $word = $words[$i] . (isset($words[$i+1]) ? $words[$i+1] : ""); 
    138139      $word_width = Font_Metrics::get_text_width($word, $font, $size, $word_spacing); 
Note: See TracChangeset for help on using the changeset viewer.