I want to match a whole line matching a word/phrase on that line! I tried this:
preg_match("/PHRASE/i", $dictionary,$matches);
But I get only the matched word! but I need that whole line! And there more than 15K lines!
|
|
|
Just use
You might also want to surround your So, if you are applying your regex to every single line separately, use
If you have all your lines inside a long multiline string and want to iterate over all the lines that contain your phrase, use:
Note the |
|||||||||||
|
|
Use something like:
Then you can see the results in |
|||||||||||
|
|
try
file — Reads entire file into an array preg_grep — Return array entries that match the pattern |
|||
|