summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/var_export_basic4.phpt
blob: cfdac8b2681112221293747949cc711ed278e39f (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
--TEST--
Test var_export() function with valid strings
--FILE--
<?php
/* Prototype  : mixed var_export(mixed var [, bool return])
 * Description: Outputs or returns a string representation of a variable
 * Source code: ext/standard/var.c
 * Alias to functions:
 */


echo "*** Testing var_export() with valid strings ***\n";
// different valid  string
$valid_strings = array(
            "\"\"" => "",
            "\" \"" => " ",
            "''" => '',
            "' '" => ' ',
            "\"string\"" => "string",
            "'string'" => 'string',
            "\"\\0Hello\\0 World\\0\"" => "\0Hello\0 World\0",
            "\"NULL\"" => "NULL",
            "'null'" => 'null',
            "\"FALSE\"" => "FALSE",
            "'false'" => 'false',
            "\"\\x0b\"" => "\x0b",
            "\"\\0\"" => "\0",
            "'\\0'" => '\0',
            "'\\060'" => '\060',
            "\"\\070\"" => "\070"
);

/* Loop to check for above strings with var_export() */
echo "\n*** Output for strings ***\n";
foreach($valid_strings as $key => $str) {
	echo "\n-- Iteration: $key --\n";
	var_export( $str );
	echo "\n";
	var_export( $str, FALSE);
	echo "\n";
	var_dump( var_export( $str, TRUE) );
	echo "\n";
}

?>
===DONE===
--EXPECT--
*** Testing var_export() with valid strings ***

*** Output for strings ***

-- Iteration: "" --
''
''
string(2) "''"


-- Iteration: " " --
' '
' '
string(3) "' '"


-- Iteration: '' --
''
''
string(2) "''"


-- Iteration: ' ' --
' '
' '
string(3) "' '"


-- Iteration: "string" --
'string'
'string'
string(8) "'string'"


-- Iteration: 'string' --
'string'
'string'
string(8) "'string'"


-- Iteration: "\0Hello\0 World\0" --
'' . "\0" . 'Hello' . "\0" . ' World' . "\0" . ''
'' . "\0" . 'Hello' . "\0" . ' World' . "\0" . ''
string(49) "'' . "\0" . 'Hello' . "\0" . ' World' . "\0" . ''"


-- Iteration: "NULL" --
'NULL'
'NULL'
string(6) "'NULL'"


-- Iteration: 'null' --
'null'
'null'
string(6) "'null'"


-- Iteration: "FALSE" --
'FALSE'
'FALSE'
string(7) "'FALSE'"


-- Iteration: 'false' --
'false'
'false'
string(7) "'false'"


-- Iteration: "\x0b" --
''
''
string(3) "''"


-- Iteration: "\0" --
'' . "\0" . ''
'' . "\0" . ''
string(14) "'' . "\0" . ''"


-- Iteration: '\0' --
'\\0'
'\\0'
string(5) "'\\0'"


-- Iteration: '\060' --
'\\060'
'\\060'
string(7) "'\\060'"


-- Iteration: "\070" --
'8'
'8'
string(3) "'8'"

===DONE===