vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   PHP Trim... not working? (https://vborg.vbsupport.ru/showthread.php?t=202052)

m002.p 01-16-2009 09:56 PM

PHP Trim... not working?
 
Hi all.

Im working on a script which keeps a memory of what text source has been read by determining which is new or old material using a txt log.

The code I use to determine the search material and create / update the file and keep the .txt file as short as possible doesnt appear to be working.

I cant see an error with my trim function so I am stumped as to why the code keeps logging source material and making the file larger and larger decreasing reliability, and not removing old source material.

PHP Code:

  // Creating new log as a string
  
$_new "";
  foreach(
$log_console as $key=>$arr)
  {
    if(
$_c[$key]) foreach($arr[0] as $k=>$v)
    {
      
$add 1;
      foreach(
$_olds as $_k=>$_v)
      {
        if(
$_v == $v)
        {
          
$_new .= "{$v}\n";
          unset(
$log_console[$key][0][$k],$log_console[$key][1][$k],$log_console[$key][2][$k],$log_console[$key][3][$k],$log_console[$key][4][$k]);
          
$_c[$key]--;
          unset(
$_olds[$_k]);
          
$add 0;
          break;
        }
      }
      if(
$add$_new .= "{$v}\n";
    }
  }
  foreach(
$_olds as $_k=>$_v) { $_new .= "{$_v}\n"; }

  
// Arrays
  
$log_console_players array_merge($log_console['say'][1],$log_console['teamsay'][1]);
  
$log_console_text array_merge($log_console['say'][2],$log_console['teamsay'][2]);

  
// Saving new log to the file
  
if($fw = @fopen("{$gameservername} Console.log",'w')) { @fwrite($fw,trim($_new)); @fclose($fw); } 

Any ideas why this might be happening?

Thanks

Matt

Dismounted 01-17-2009 10:39 AM

I don't really understand what you're trying to do, but trim() only removes white-space, or another character if specified.


All times are GMT. The time now is 06:17 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.01440 seconds
  • Memory Usage 1,726KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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