1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 17:38:14 +02:00
Files
archived-php-src/ext/standard/tests/strings/quoted_printable_encode_001.phpt
T
2019-03-11 11:32:20 +01:00

22 lines
370 B
PHP

--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