> I'm reading a paramter file and a text file.
> Per line of the text file I want to check if there is a word in there
from
> the parameter file.
> However I need to open and read the parameter file for each line in
the
> text
> file. How can I change this?
Can't you read the param file first into
Hiya
something like this
if ($FileContent = file("d:\MyPhp\\test.ora") AND $IniContent =
file("d:\MyPhp\initORA.ini")) {
foreach($FileContent AS $line) {
if (in_array($line, $iniContent)) {
echo "$Line\n";
Did you look at:
http://www.php.net/manual/en/function.file.php
Puts all lines in an array
Gr,
At 12:00 19-12-02 +0100, Jacob van Zanen wrote:
Hi All,
I'm reading a paramter file and a text file.
Per line of the text file I want to check if there is a word in there from
the parameter file.
Howe
3 matches
Mail list logo