Jump to content

Warning: implode


Senkerik

Recommended Posts

Some reason this problem has come up.. All i have done was download my files to my comp then re-upload them to a new server.

 

 

Warning: implode() [function.implode]: Invalid arguments passed in /home/ceasedfa/public_html/readchat.php on line 35

 

 

 

 

This is my ReadChat.php

 

 

 

<?php

  include ('global.config.php');

  include ('include/class.core.php');

  $CeasedFate = new Core();

  $CeasedFate->connectDB($SQL_host,$SQL_user,$SQL_pass,$SQL_db);

  $CeasedFate->stripPost();

  $CeasedFate->stripGet();

  $CeasedFate->is_logged($_SESSION['username'],$_SESSION['uid']);

  $d    = $CeasedFate->detail('users','ignore_list','username=\''.$_SESSION['username'].'\'');

  $list = explode('|',$d['ignore_list']);

 

  $filename = $ChatFile;

  $handle = fopen($filename, "r");

  $contents = @fread($handle, filesize($filename));

 

  $newc =explode('<br>',$contents);

 

  foreach($newc as $cnew){

  if($x<=25){

    $temp_= ereg_replace('<span id="time_'.$_SESSION['username'].'" style="visibility:hidden;">',' <span style="visibility:visible;color:#ffccff;font-size:14px;font-family:arial;">',$cnew);

    $temp_= ereg_replace('<span id="'.$_SESSION['username'].'" style="display:none;">',' <span class="private">',$temp_);

    $temp_= ereg_replace('<span id="'.$_SESSION['username'].'" style="display:none;">','<span class="private">',$temp_);

    if(count($list)>0){

      foreach($list as $ignore){

        if (strlen(trim($ignore))>0){

          $temp_= ereg_replace('<span id="ign_'.$ignore.'">',"<span style='display:none;'>",$temp_);

        }

      }

    }

    $newcc[]=$temp_;

    }

    $x++;

  }

 

  $newcc=implode('<br>',$newcc);

  echo $newcc;

 

fclose($handle);

?>

Link to comment
Share on other sites

A couple of things. You should use str_replace() instead of ereg_replace() as it'll be much faster. You can also use it with an array so you don't have to do as many replaces :)

 

Second, you're probably getting the error because of a bad character getting output. Try doing a var_dump($newcc) to see what is in there. Perhaps you can see it that way. If not, try encoding the <br> tag with htmlentities() to see if that solves it.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.