View Single Post
  #1  
Old 02-03-2008, 07:36 PM
MrApples MrApples is offline
 
Join Date: Aug 2007
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Too much memory used in PHP?

I made a parser which is using too much memory ( 38 megs ), how could I cut that down?

I must be doing something which is bad practice in PHP but I'm new to it.

PHP Code:
function fetch_bbcode_trigger_blocks(){
    return array(
        
'If (All Conditions Are True)',
        
'If - Conditions',
                ....
                
Continues for about 10
    
);
}
    
function 
fetch_bbcode_trigger_actions(){
    return array(
                       
'Set',
            
'---',    
            
'Skip Remaining Actions',
                         ....
                         
Continues for about 30  
    
); 
}
    
function 
fetch_bbcode_trigger_icons(){
    return array(
            
'If (All Conditions Are True)' => 'if',
            
'If - Conditions' => 'if',
                        ....
                        
Continues for about 40
    
);
}    

function 
NextLine($pos$code){
    
$nextl = ( strpos($code,'<br />',$pos) + );
    if ( 
$nextl ){
        return 
$next1;
    } else {
        return -
1;
    }
}

function 
IsBlockEnd($code$len){
    
$reglen strlen($code);
    
$newlen = ($reglen strlen(ltrim($code,"\t ")));
    return (
$newlen $len);
}

function 
IsBlock($code){
    
$type 0;
    
$blocks fetch_bbcode_trigger_blocks();
    foreach (
$blocks as $block){
        
$spos stripos($code,$block);
        if ( 
$spos ){
            return 
$block;
        }
    }
}

function 
IsAction($code){
    
$type 0;
    
$actions fetch_bbcode_trigger_actions();
    foreach (
$actions as $action){
        
$spos stripos($code,$action);
        if ( 
$spos ){
            return 
$action;
        }
    }
}

function 
IsUnknown($code){
    if ( 
IsBlock($code) ){
        return 
false;
    } elseif ( 
IsAction($code) ){
        return 
false;
    } elseif ( 
strpos($code'(') ){
        return 
false;
    }
    return 
true;
}

function 
handle_bbcode_trigger($code){
//v    global $vbulletin, $vbphrase, $stylevar, $show, $html_allowed;
        
$trig '';
        
// Define Images and HTML
        
$icons fetch_bbcode_trigger_icons();
        
$iempty '<img height=\"16\" width=\"16\" src=\"/imgs/jass/empty.gif\" alt=\"\"/>';
        
$iline '<img height=\"16\" width=\"16\" src=\"/imgs/jass/line.gif\" alt=\"\"/>';
        
$ijoin 'join';
        
$iblock '<div><a href=\'#top\' onclick=\'return ExpandCollapseNode(this,\"/imgs/jass/joinbottomplus.gif\",\"/imgs/jass/joinbottomminus.gif\")\'><img src=\'/imgs/jass/joinbottomminus.gif\' alt=\'Collapse\' border=\'0\' /></a><img src=\"/imgs/jass/join.gif\" alt=\"\" />';
        
$ibend '<img src=\"/imgs/jass/joinbottom.gif\" alt=\"\"/>';
        
// Start Predefines
        
$cur 0;
        
$setblock 0;
        
$blocklevel 0;
        
$lastlen 0;
        
$nextline NextLine(0,$code);
        
$action '';
        
$start '';
        
$end '';
        
$icon '';
        while ( 
$nextline != -|| $cur ){
            
$cur++;
            
$line substr($code$pos$nextline);
            
$pos $nextline;
            if ( 
$setblock != ){
                
$blocklevel = ($blocklevel $setblock);
                
$setblock 0;            
            }
            if ( 
$blocklevel == ){
                
// Is this a trigger name?
                
if (!$actiondefined){
                    if ( 
IsUnknown($line) ){
                        
// Yis!
                        
$setblock 1;
                        
$icon 'base';
                    }
                }
            } else {
                if ( 
IsBlockEnd($line,$lastlen) ){
                    
$setblock = -1;
                } elseif ( 
IsBlock($line) ){
                    
$setblock 1;
                    
$icon IsBlock($line);
                }
            }
            
$lastlen strlen($line);
            
// We can clean it now. IsBlockEnd requires whitespaces and tabs.
            
$line ltrim($line,"\t ");
            if ( 
$setblock <= ){
                
// Its a function...
                
$action IsAction($line);
                if ( 
$action != '' ){
                    
$icon $action;
                    if ( 
$blocklevel == ){
                        
$actiondefined 1;
                    }
                } else {
                    
$icon 'unknown';
                }
            }
            
$level $blocklevel;
            if ( 
$level ){
                while ( 
$level ){
                    if ( 
$blockhere[$level] == ){
                        
$start .= $iempty;
                    } else {
                        
$start .= $iline;
                    }
                    
$level--;
                }
                if ( 
$setblock ){
                    
$start .= $iblock;
                } elseif ( 
$setblock ){
                    
$start .= $ibend;
                } else {
                    
$start .= $ijoin;
                }
            } elseif ( 
$setblock ){
                
$start .= $iblock;
                
$start .= $ijoin;
            } 
            if ( 
$setblock ){
                
$end '</span></div>';
            } else {
                
$end '</span>';
            }
            
$start .= "<img height=\"16\" width=\"16\" src=\"/imgs/jass/" $icons[$icon] . ".gif\" alt=\"\" />',";
            
$start .= "<span>";
            
$line $start $line;
            
$line .= $end;
            
$trig .= $line;
            
$nextline NextLine($pos$code);
            
$action '';
            
$start '';
            
$end '';
            
$icon '';
        }
        
$code '';
        
$replace = array (
            
'<br>',
            
'<br />',
        );
        
$with = array (
            
'',
            
'',
        );
        
$trig str_replace($replace$with$trig);
    return 
$trig;

If it applies the error happens at "$trig .= $line;"
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01251 seconds
  • Memory Usage 1,896KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete