pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Untitled
2 sec ago
Wupload Cookies 12.02.2...
3 sec ago
Untitled
4 sec ago
SOccer (((TV))) Man Cit...
55 sec ago
What is the fastest way...
8 sec ago
Blue Bloods Familia de ...
8 sec ago
esehusey
13 sec ago
Hotfile Cookies 12.02.2...
15 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Feb 13th, 2010 | Syntax:
PHP
| Size: 0.28 KB | Hits: 84 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
<?php
// GET DATE
$path
=
"C:
\\
musik
\\
"
;
if
(
$handle
=
opendir
(
$path
)
)
{
while
(
$item
=
readdir
(
$handle
)
)
{
if
(
is_dir
(
$path
.
$item
)
)
continue
;
file_put_contents
(
"zugriffe.txt"
,
$item
.
"|"
.
filemtime
(
$path
.
$item
)
.
"
\r
\n
"
,
FILE_APPEND
)
;
}
}
?>
create new paste
|
create new version of this paste
RAW Paste Data
<?php // GET DATE $path = "C:\\musik\\"; if ($handle = opendir($path)) { while ($item = readdir($handle)) { if (is_dir($path . $item)) continue; file_put_contents("zugriffe.txt", $item . "|" . filemtime($path . $item) . "\r\n", FILE_APPEND); } } ?>