<?php
$to_search
=
'myname'
;
// Word to search
$files
=
array
(
)
;
foreach
(
glob
(
'*.*'
)
as
$file
)
{
$file_data
=
file_get_contents
(
$file
)
;
if
(
ereg
(
$to_search
,
$file_data
)
==
true
)
{
$files
[
]
=
realpath
(
$file
)
;
}
}
print_r
(
$files
)
;
?>