774 snippets from 1585 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(138)
JavaScript
(125)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
CSharp
(28)
File
(28)
HTML
(27)
mysql
(25)
C
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Clean PHP Templat...
PHP/MySQL impleme...
Analyte - Easy to...
Easy SQLite inter...
Very lightweight ...
AutoComplete plug...
AutoComplete plug...
Connection Java -...
View PostgreSql
Store Procedure
Venture Capital Jobs
New Members
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
impomatic
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
Search in files
Search in files
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
5
Wed. Feb. 28th, 2007 1:16 AM
1 of 1
lalamen
Files
|
search
0 comments
Function to search in files
<?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
)
;
?>
Maor No
Comments
New Comment
There are currently no comments for this snippet.
New Comment
Voting
Votes Up
dannyboy
lalamen
Pio
Sonsam
sundaramkumar
Votes Down
There are currently no comments for this snippet.