summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/quoted_printable_encode_001.phpt
blob: df26d5cf4b26abe7aab48860d3f67607e363e0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
quoted_printable_encode() tests - 1
--FILE--
<?php

var_dump(quoted_printable_encode(""));
var_dump(quoted_printable_encode("test"));

var_dump(quoted_printable_encode(1));
var_dump(quoted_printable_encode(NULL));
var_dump(quoted_printable_encode(false));

echo "Done\n";
?>
--EXPECT--
string(0) ""
string(4) "test"
string(1) "1"
string(0) ""
string(0) ""
Done