summaryrefslogtreecommitdiff
path: root/ext/standard/tests/directory/bug74589_utf8.phpt
blob: 686e005b8a9641ffa9618ec7bf15e6141f566f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
--TEST--
Bug #74589 __DIR__ wrong for unicode character, UTF-8
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN' && PHP_OS != 'Linux') {
    die('skip Linux or Windows only');
}
?>
--INI--
internal_encoding=utf-8
--FILE--
<?php
/*
#vim: set fileencoding=utf-8
#vim: set encoding=utf-8
*/

$item = "bug74589_新建文件夹"; // utf-8 string
$dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . $item;
$test_file = $dir . DIRECTORY_SEPARATOR . "test.php";

mkdir($dir);

file_put_contents($test_file,
"<?php
	var_dump(__DIR__);
	var_dump(__FILE__);
	var_dump(__DIR__ === dirname(__FILE__));");

$php = getenv('TEST_PHP_EXECUTABLE');

echo shell_exec("$php -n $test_file");

?>
===DONE===
--EXPECTF--	
string(%d) "%sbug74589_新建文件夹"
string(%d) "%sbug74589_新建文件夹%etest.php"
bool(true)
===DONE===
--CLEAN--
<?php
	$item = "bug74589_新建文件夹"; // utf-8 string
	$dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . $item;
	$test_file = $dir . DIRECTORY_SEPARATOR . "test.php";
	unlink($test_file);
	rmdir($dir);
?>