vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Strange php function problem (https://vborg.vbsupport.ru/showthread.php?t=108801)

Nullifi3d 02-24-2006 08:32 PM

Strange php function problem
 
Not exactly sure why this code isn't working:
PHP Code:

function construct_items() {
    global 
$db$vbulletin;
    
$armors $db->query_read("SELECT * FROM " TABLE_PREFIX "armyarmors");
    while (
$armor $db->fetch_array($armors)) {
        
$armor['price'] = vb_number_format($armor['price']);
        
$armor['strength'] = vb_number_format($armor['strength']);
        eval(
'$arsenalarmorbit .= "' fetch_template('army_arsenalarmorbit') . '";');
    }
    
$weapons $db->query_read("SELECT * FROM " TABLE_PREFIX "armyweapons");
    while (
$weapon $db->fetch_array($weapons)) {
        
$weapon['price'] = vb_number_format($weapon['price']);
        
$weapon['strength'] = vb_number_format($weapon['strength']);
        eval(
'$arsenalweaponbit .= "' fetch_template('army_arsenalweaponbit') . '";');
    }
    
$defensive $db->query_read("SELECT * FROM " TABLE_PREFIX "armyarmors");
    while (
$defense $db->fetch_array($defensive)) {
        
$item $db->query_first("SELECT a" $defense['id'] . " FROM " TABLE_PREFIX "armysys WHERE userid = " $vbulletin->userinfo['userid']);
        
$item['name'] = $defense['name'];
        
$item['id'] = "a" $offense['id'];
        
$item['quantity'] = vb_number_format($item[$defense['id']]);
        
$item['strength'] = vb_number_format($defense['strength']);
        
$item['cstrength'] = vb_number_format($item['cstrength']);
        
$item['sellprice'] = vb_number_format( ($defense['price']) * ('.' $vbulletin->options['armysys_sellback_percent']) );
        
$item['repairprice'] =  vb_number_format( ($defense['strength'] * '.' $vbulletin->options['armysys_repair_percent']) * ( ($defense['strength'] - $defense['cstrength']) * ($item[$defense['id']]) ) );
        if (
$item[$defense['id']] > 0) eval('$arsenalarmorsbit .= "' fetch_template('army_arsenalarmorsbit') . '";');
    }
    
$offensive $db->query_read("SELECT * FROM " TABLE_PREFIX "armyweapons");
    while (
$offense $db->fetch_array($offensive)) {
        
$item $db->query_first("SELECT w" $offense['id'] . " FROM " TABLE_PREFIX "armysys WHERE userid = " $vbulletin->userinfo['userid']);
        
$item['name'] = $offense['name'];
        
$item['id'] = "w" $offense['id'];
        
$item['quantity'] = vb_number_format($item[$offense['id']]);
        
$item['strength'] = vb_number_format($offense['strength']);
        
$item['cstrength'] = vb_number_format($item['cstrength']);
        
$item['sellprice'] = vb_number_format( ($offense['price']) * ('.' $vbulletin->options['armysys_sellback_percent']) );
        
$item['repairprice'] = vb_number_format( ($offense['strength'] * '.' $vbulletin->options['armysys_repair_percent']) * ( ($offense['strength'] - $offense['cstrength']) * ($item[$offense['id']]) ) );
        if (
$item[$offense['id']] > 0) eval('$arsenalweaponsbit .= "' fetch_template('army_arsenalweaponsbit') . '";');
    }


In the same page I am calling the function with:
PHP Code:

construct_items(); 

If I don't use the code in a function it correctly evals the code, but if I try a function it does not do anything.

Marco van Herwaarden 02-25-2006 09:22 AM

Are you using this inside a Scheduled Task?

If yes, try passing $vbulletin as a parameter, instead of relying on global.

Nullifi3d 02-25-2006 10:13 AM

No, it's in a regular vbulletin page (well my custom page). It seems the only things not functioning are the eval lines.

Marco van Herwaarden 02-25-2006 10:30 AM

If that is your problem, then do a global of those fields you are evalling into. Otherwise they will not be available outside the function.

Nullifi3d 02-25-2006 10:37 AM

Thank you. That worked.


All times are GMT. The time now is 12:25 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01129 seconds
  • Memory Usage 1,757KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete