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 fopen() for write Kartuli UTF-8 path --SKIPIF-- <?php include __DIR__ . DIRE..

Decoded Output download

--TEST--
Test fopen() for write Kartuli UTF-8 path
--SKIPIF--
<?php
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";

skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts();

?>
--CONFLICTS--
dir_kartuli
--FILE--
<?php
/*
#vim: set fileencoding=kartuli
#vim: set encoding=kartuli
*/

include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";

$item = "";
$prefix = create_data("dir_kartuli", "${item}42}");
$fn = $prefix . DIRECTORY_SEPARATOR . "${item}33";

$f = fopen($fn, 'w');
if ($f) {
    var_dump($f, fwrite($f, "writing to an mb filename"));
    var_dump(fclose($f));
} else {
    echo "open utf8 failed
";
}

var_dump(file_get_contents($fn));

get_basename_with_cp($fn, 65001);

remove_data("dir_kartuli");

?>
--EXPECTF--
resource(%d) of type (stream)
int(25)
bool(true)
string(25) "writing to an mb filename"
Active code page: 65001
getting basename of %s\u10e533
string(32) "33"
bool(true)
string(%d) "%s\u10e533"
Active code page: %d

Did this file decode correctly?

Original Code

--TEST--
Test fopen() for write Kartuli UTF-8 path
--SKIPIF--
<?php
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";

skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts();

?>
--CONFLICTS--
dir_kartuli
--FILE--
<?php
/*
#vim: set fileencoding=kartuli
#vim: set encoding=kartuli
*/

include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";

$item = "";
$prefix = create_data("dir_kartuli", "${item}42}");
$fn = $prefix . DIRECTORY_SEPARATOR . "${item}33";

$f = fopen($fn, 'w');
if ($f) {
    var_dump($f, fwrite($f, "writing to an mb filename"));
    var_dump(fclose($f));
} else {
    echo "open utf8 failed\n";
}

var_dump(file_get_contents($fn));

get_basename_with_cp($fn, 65001);

remove_data("dir_kartuli");

?>
--EXPECTF--
resource(%d) of type (stream)
int(25)
bool(true)
string(25) "writing to an mb filename"
Active code page: 65001
getting basename of %s\33
string(32) "33"
bool(true)
string(%d) "%s\33"
Active code page: %d

Function Calls

None

Variables

None

Stats

MD5 661a59fc15b6e214c4b5a5698d928f69
Eval Count 0
Decode Time 84 ms