Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- touch() with times --CREDITS-- Dave Kelsey <[email protected]> --SKIPIF-- <?php..

Decoded Output download

--TEST--
touch() with times
--CREDITS--
Dave Kelsey <[email protected]>
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
    die('skip.. Not valid for Windows');
}
?>
--FILE--
<?php

$filename = __DIR__."/touch_variation1.dat";

var_dump(touch($filename, 101));
var_dump(filemtime($filename));
var_dump(fileatime($filename));

@unlink($filename);

@unlink($filename);
var_dump(touch($filename, 100, 102));
var_dump(filemtime($filename));
var_dump(fileatime($filename));

@unlink($filename);
echo "Done
";

?>
--EXPECT--
bool(true)
int(101)
int(101)
bool(true)
int(100)
int(102)
Done

Did this file decode correctly?

Original Code

--TEST--
touch() with times
--CREDITS--
Dave Kelsey <[email protected]>
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
    die('skip.. Not valid for Windows');
}
?>
--FILE--
<?php

$filename = __DIR__."/touch_variation1.dat";

var_dump(touch($filename, 101));
var_dump(filemtime($filename));
var_dump(fileatime($filename));

@unlink($filename);

@unlink($filename);
var_dump(touch($filename, 100, 102));
var_dump(filemtime($filename));
var_dump(fileatime($filename));

@unlink($filename);
echo "Done\n";

?>
--EXPECT--
bool(true)
int(101)
int(101)
bool(true)
int(100)
int(102)
Done

Function Calls

None

Variables

None

Stats

MD5 d2c0fadc043752f8a34f0723f1bdae91
Eval Count 0
Decode Time 127 ms