1--TEST--
2cp1254 cmd test
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(1254, "ansi");
11
12?>
13--CONFLICTS--
14file_cp1254
15--INI--
16default_charset=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
27$item = "�okbaytl� i�leri";
28$prefix = create_data("file_cp1254", $item, 1254);
29$fn = $prefix . DIRECTORY_SEPARATOR . $item;
30
31var_dump($fn);
32var_dump(touch($fn));
33var_dump(file_exists($fn));
34system("dir /b \"" . $fn . "\"");
35
36remove_data("file_cp1254");
37
38?>
39===DONE===
40--EXPECTF--
41string(%d) "%s\�okbaytl� i�leri"
42bool(true)
43bool(true)
44�okbaytl� i�leri
45===DONE===
46