Remove Trailing New Line Character in PHP

Q

How To Remove the New Line Character from the End of a Text Line?

✍: FYIcenter.com

A

If you are using fgets() to read a line from a text file, you may want to use the chop() function to remove the new line character from the end of the line as shown in this PHP script:

<?php
$handle = fopen("/tmp/inputfile.txt", "r");
while ($line=fgets()) {
  $line = chop($line);
  # process $line here...
}
fclose($handle);
?> 

 

Removing Leading and Trailing Spaces in PHP

Ways to Remove Leading and Trailing White Spaces in PHP

PHP Built-in Functions for Strings

⇑⇑ PHP Tutorials

2016-10-13, 1907🔥, 0💬