1--TEST-- 2Test mkdir/rmdir cp1254 to UTF-8 path 3--SKIPIF-- 4<?php 5include __DIR__ . DIRECTORY_SEPARATOR . "util.inc"; 6 7skip_if_not_win(); 8if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); 9skip_if_no_required_exts(); 10skip_if_wrong_cp(857, "oem"); 11 12?> 13--CONFLICTS-- 14dir_cp1254 15--INI-- 16internal_encoding=cp1254 17--FILE-- 18<?php 19/* 20#vim: set fileencoding=cp1254 21#vim: set encoding=cp1254 22*/ 23 24include __DIR__ . DIRECTORY_SEPARATOR . "util.inc"; 25 26$item = "�okbaytl� i�leri"; 27$prefix = create_data("dir_cp1254", "${item}42", 1254); 28$path = $prefix . DIRECTORY_SEPARATOR . "${item}42"; 29 30$subpath = $path . DIRECTORY_SEPARATOR . "${item}4"; 31 32/* The mb dirname exists*/ 33var_dump(file_exists($path)); 34 35var_dump(mkdir($subpath)); 36var_dump(file_exists($subpath)); 37 38get_basename_with_cp($subpath, 1254); 39 40var_dump(rmdir($subpath)); 41remove_data("dir_cp1254"); 42 43?> 44===DONE=== 45--EXPECTF-- 46bool(true) 47bool(true) 48bool(true) 49Active code page: 1254 50getting basename of %s\�okbaytl� i�leri42\�okbaytl� i�leri4 51string(%d) "�okbaytl� i�leri4" 52bool(true) 53string(%d) "%s\�okbaytl� i�leri42\�okbaytl� i�leri4" 54Active code page: %d 55bool(true) 56===DONE=== 57