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 cp1255 to UTF-8 path --SKIPIF-- <?php include __DIR__ . DI..
Decoded Output download
--TEST--
Test fopen() for write cp1255 to 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_cp1255
--FILE--
<?php
/*
#vim: set fileencoding=cp1255
#vim: set encoding=cp1255
*/
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
$item = " ";
$prefix = create_data("dir_cp1255", "${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_cp1255");
?>
--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\u05db 33
string(%s) " 33"
bool(true)
string(%d) "%s\u05db 33"
Active code page: %d
Did this file decode correctly?
Original Code
--TEST--
Test fopen() for write cp1255 to 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_cp1255
--FILE--
<?php
/*
#vim: set fileencoding=cp1255
#vim: set encoding=cp1255
*/
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
$item = " ";
$prefix = create_data("dir_cp1255", "${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_cp1255");
?>
--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(%s) " 33"
bool(true)
string(%d) "%s\ 33"
Active code page: %d
Function Calls
None |
Stats
MD5 | 1f4bef5b2b7a1ef6c5bd282a45debf8f |
Eval Count | 0 |
Decode Time | 90 ms |