PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
psFileLines()
Returns lines of a file into array


Description:

Returns each line in an array and trimed, and no blanks or comments.
This differs from std. file() function, in that blank lines are not included
or any lines that start with std comment '#'



Usage:

$aryLines = psFileLines("/tmp/somefile.txt" {,skipcomments});



Example:







Code:


function psFileLines($wFile,$skip=true)
{
$ary = file($wFile);
foreach ($ary as $line)
{
$line = trim($line);
if ($skip == false)
{
$res[] = $line;
}
else
{
if ( (trim($line) != "") && (substr($line,0,1) != "#") )
{
$res[] = $line;
}
}
}
return $res;
}

Changlelog:


See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site