if you want to search inside files for a word...
thats harder. a LOT harder.
but you can do it.
Code:
<?php
$mydir = 'dir/sub-dir';
$myext = '.htm';
foreach(glob("$mydir/*$myext") as $item) {
$inside = file_get_contents($item);
$findme = 'my text';
$pos = strpos($inside, $findme);
// Note our use of ===. Simply == would not
Leave a comment: