TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
316 B
19 lines
316 B
--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(false));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
string(0) ""
|
|
string(4) "test"
|
|
string(1) "1"
|
|
string(0) ""
|
|
Done
|
|
|