global statement removal: hphp/test/zend [2/x]
[hiphop-php.git] / hphp / test / zend / good / ext / iconv / tests / iconv_strlen_variation1.php.expectf
blob22f2ab33c9890b8ab352e93d348c2adb4ea04209
1 *** Testing iconv_strlen() : usage variations ***
3 --int 0--
4 int(1)
6 --int 1--
7 int(1)
9 --int 12345--
10 int(5)
12 --int -12345--
13 int(6)
15 --float 10.5--
16 int(4)
18 --float -10.5--
19 int(5)
21 --float 12.3456789000e10--
22 int(12)
24 --float 12.3456789000e-10--
25 int(13)
27 --float .5--
28 int(3)
30 --uppercase NULL--
31 int(0)
33 --lowercase null--
34 int(0)
36 --lowercase true--
37 int(1)
39 --lowercase false--
40 int(0)
42 --uppercase TRUE--
43 int(1)
45 --uppercase FALSE--
46 int(0)
48 --empty string DQ--
49 int(0)
51 --empty string SQ--
52 int(0)
54 --string DQ--
55 int(6)
57 --string SQ--
58 int(6)
60 --mixed case string--
61 int(6)
63 --heredoc--
64 int(11)
66 --instance of class--
67 int(14)
69 --undefined var--
70 int(0)
72 --unset var--
73 int(0)
75 --resource--
77 Warning: %s
78 ===DONE===