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-- Test disk_total_space() function : basic functionality --CONFLICTS-- disk_total_s..

Decoded Output download

--TEST--
Test disk_total_space() function : basic functionality
--CONFLICTS--
disk_total_space
--FILE--
<?php
$file_path = __DIR__;

echo "*** Testing with normal directory ***
";
var_dump( disk_total_space($file_path) );

echo "*** Testing with newly created directory ***
";
$dir = "/disk_total_space";

mkdir($file_path.$dir);
var_dump( disk_total_space($file_path.$dir) );
$fh = fopen($file_path.$dir."/disk_total_space.tmp", "w");
fwrite($fh, "Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data");

fclose($fh);

echo"
Total Space after writing to a file
";
var_dump( disk_total_space($file_path.$dir) );

echo"
-- Done --";
?>
--CLEAN--
<?php
$file_path = __DIR__;
unlink($file_path."/disk_total_space/disk_total_space.tmp");
rmdir($file_path."/disk_total_space");
?>
--EXPECTF--
*** Testing with normal directory ***
float(%f)
*** Testing with newly created directory ***
float(%f)

Total Space after writing to a file
float(%f)

-- Done --

Did this file decode correctly?

Original Code

--TEST--
Test disk_total_space() function : basic functionality
--CONFLICTS--
disk_total_space
--FILE--
<?php
$file_path = __DIR__;

echo "*** Testing with normal directory ***\n";
var_dump( disk_total_space($file_path) );

echo "*** Testing with newly created directory ***\n";
$dir = "/disk_total_space";

mkdir($file_path.$dir);
var_dump( disk_total_space($file_path.$dir) );
$fh = fopen($file_path.$dir."/disk_total_space.tmp", "w");
fwrite($fh, "Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data");

fclose($fh);

echo"\nTotal Space after writing to a file\n";
var_dump( disk_total_space($file_path.$dir) );

echo"\n-- Done --";
?>
--CLEAN--
<?php
$file_path = __DIR__;
unlink($file_path."/disk_total_space/disk_total_space.tmp");
rmdir($file_path."/disk_total_space");
?>
--EXPECTF--
*** Testing with normal directory ***
float(%f)
*** Testing with newly created directory ***
float(%f)

Total Space after writing to a file
float(%f)

-- Done --

Function Calls

None

Variables

None

Stats

MD5 fe0deed7a58e983dcd61660d3bee72f2
Eval Count 0
Decode Time 93 ms