summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/mysqli_real_escape_string_gb2312.phpt
blob: 2b46fa6f8cfff73253d5532d03c9174966b4a284 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
--TEST--
mysqli_real_escape_string() - gb2312
--SKIPIF--
<?php

require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
require_once('connect.inc');

if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
    die(sprintf("skip Cannot connect to MySQL, [%d] %s\n",
        mysqli_connect_errno(), mysqli_connect_error()));
}
if (!mysqli_set_charset($link, 'gb2312'))
    die(sprintf("skip Cannot set charset 'gb2312'"));
mysqli_close($link);
?>
--FILE--
<?php

	require_once("connect.inc");
	if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
{
		printf("[001] Cannot connect to the server using host=%s, user=%s,
passwd=***, dbname=%s, port=%s, socket=%s - [%d] %s\n", $host, $user, $db,
$port, $socket, mysqli_connect_errno(), mysqli_connect_error());
	}

	if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
		printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link),
mysqli_error($link));
	}

	if (!mysqli_query($link, 'CREATE TABLE test(id INT, label CHAR(1), PRIMARY
KEY(id)) ENGINE=' . $engine . " DEFAULT CHARSET=gb2312")) {
		printf("Failed to create test table: [%d] %s\n", mysqli_errno($link),
mysqli_error($link));
	}

	var_dump(mysqli_set_charset($link, "gb2312"));

	if ('首先\\\\首先' !== ($tmp = mysqli_real_escape_string($link, '首先\\首先')))
		printf("[004] Expecting \\\\, got %s\n", $tmp);

	if ('首先\"首先' !== ($tmp = mysqli_real_escape_string($link, '首先"首先')))
		printf("[005] Expecting \", got %s\n", $tmp);

	if ("首先\'首先" !== ($tmp = mysqli_real_escape_string($link, "首先'首先")))
		printf("[006] Expecting ', got %s\n", $tmp);

	if ("首先\\n首先" !== ($tmp = mysqli_real_escape_string($link, "首先\n首先")))
		printf("[007] Expecting \\n, got %s\n", $tmp);

	if ("首先\\r首先" !== ($tmp = mysqli_real_escape_string($link, "首先\r首先")))
		printf("[008] Expecting \\r, got %s\n", $tmp);

	if ("首先\\0首先" !== ($tmp = mysqli_real_escape_string($link, "首先" . chr(0) . "首先")))
		printf("[009] Expecting %s, got %s\n", "首先\\0首先", $tmp);

	var_dump(mysqli_query($link, "INSERT INTO test(id, label) VALUES (100, '首')"));

	mysqli_close($link);
	print "done!";
?>
--CLEAN--
<?php
    require_once("clean_table.inc");
?>
--EXPECT--
bool(true)
bool(true)
done!