File: mysqli_real_escape_string_euckr.phpt

package info (click to toggle)
php7.0 7.0.33-0%2Bdeb9u8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 184,180 kB
  • sloc: ansic: 809,195; php: 22,035; sh: 11,873; cpp: 8,064; xml: 6,228; javascript: 2,546; yacc: 1,869; exp: 1,514; makefile: 1,231; pascal: 1,200; awk: 501; perl: 315; sql: 22
file content (74 lines) | stat: -rw-r--r-- 2,423 bytes parent folder | download | duplicates (7)
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
74
--TEST--
mysqli_real_escape_string() - euckr
--SKIPIF--
<?php
if (ini_get('unicode.semantics'))
	die("skip Test cannot be run in unicode mode");

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, 'euckr'))
	die(sprintf("skip Cannot set charset 'euckr'"));
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=euckr")) {
		printf("Failed to create test table: [%d] %s\n", mysqli_errno($link),
mysqli_error($link));
	}

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

	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");
?>
--EXPECTF--
bool(true)
bool(true)
done!