ignoring comment line on the text file.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ogo796
    New Member
    • Jan 2008
    • 44

    ignoring comment line on the text file.

    hi People
    -------------
    books .txt
    -------------
    to sir with love
    the punisher
    #php Bible

    this is text file that i am reading from.i read these files into an array after that i wipe the content of the file after i push the content of the file to the
    text file line by line cause i want to write the specific line and sort.

    so my problem is when i write bag to the text file it push all the commented file at the bottom of the file and this prevent me to read the file after the commented one so anybody help
    thanks
    example
    $your_data = $_POST["book"]
    $q=$_POST["path"];

    $myArray = file($q."book.t xt");

    //Open registry file and wipe contents

    $fp = fopen($q."book. txt", "w");

    array_push($myA rray,$your_data );

    usort($myArray, "strnatcmp" );



    //Loop through the registry array

    foreach ($myArray as $value)

    {

    //Write the sorted contents to registry line-by-line

    fwrite($fp,$val ue);



    }



    // Close the registry file

    fclose($fp);

    please help me to ignore the commented file.
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Please explain your problem a bit more clear, cause I do not understand it fully.
    Since you do a sort, of course all commented lines are at the end of the file.

    Ronald

    Comment

    Working...