View Single Post
Old 2009-02-13, 08:38 PM   #16
Beaver Bob
Porn Blog Addict
 
Beaver Bob's Avatar
 
Join Date: Oct 2005
Location: Las Vegas, Nevada
Posts: 715
Send a message via ICQ to Beaver Bob
Quote:
Originally Posted by dunc View Post
Sort of related - I have a bunch of stories which I want to use - but all the lines are double spaced

Is there a way of clearing all empty lines using php...
try this

PHP Code:
<?php
  $contents 
file_get_contents("filename.txt");
  
$line_by_line explode("\n"$contents);
  
array_pop($line_by_line); // get rid of the empty line at the end that explode creates
  
$results = array();

 
$counter 0;
  foreach (
$line_by_line as $line) {
    if(
$counter == 0) {
       print 
"$line\n";
    }
    
$counter++;
  }

?>
Beaver Bob is offline   Reply With Quote