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 scandir() function : error conditions - Non-existent directory --SKIPIF-- <?..

Decoded Output download

--TEST--
Test scandir() function : error conditions - Non-existent directory
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
    die('skip.. Not valid for Windows');
}
?>
--FILE--
<?php
/*
 * Pass a directory that does not exist to scandir() to test error messages
 */

echo "*** Testing scandir() : error conditions ***
";

$directory = __DIR__ . '/idonotexist';

echo "
-- Pass scandir() an absolute path that does not exist --
";
var_dump(scandir($directory));

echo "
-- Pass scandir() a relative path that does not exist --
";
var_dump(scandir('/idonotexist'));
?>
--EXPECTF--
*** Testing scandir() : error conditions ***

-- Pass scandir() an absolute path that does not exist --

Warning: scandir(%s/idonotexist): Failed to open directory: %s in %s on line %d

Warning: scandir(): (errno %d): %s in %s on line %d
bool(false)

-- Pass scandir() a relative path that does not exist --

Warning: scandir(/idonotexist): Failed to open directory: %s in %s on line %d

Warning: scandir(): (errno %d): %s in %s on line %d
bool(false)

Did this file decode correctly?

Original Code

--TEST--
Test scandir() function : error conditions - Non-existent directory
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
    die('skip.. Not valid for Windows');
}
?>
--FILE--
<?php
/*
 * Pass a directory that does not exist to scandir() to test error messages
 */

echo "*** Testing scandir() : error conditions ***\n";

$directory = __DIR__ . '/idonotexist';

echo "\n-- Pass scandir() an absolute path that does not exist --\n";
var_dump(scandir($directory));

echo "\n-- Pass scandir() a relative path that does not exist --\n";
var_dump(scandir('/idonotexist'));
?>
--EXPECTF--
*** Testing scandir() : error conditions ***

-- Pass scandir() an absolute path that does not exist --

Warning: scandir(%s/idonotexist): Failed to open directory: %s in %s on line %d

Warning: scandir(): (errno %d): %s in %s on line %d
bool(false)

-- Pass scandir() a relative path that does not exist --

Warning: scandir(/idonotexist): Failed to open directory: %s in %s on line %d

Warning: scandir(): (errno %d): %s in %s on line %d
bool(false)

Function Calls

None

Variables

None

Stats

MD5 cfac0d63a7e8f87388b3a0dfb51fbc21
Eval Count 0
Decode Time 101 ms