PHP userland backwards compatibility layer that emulates PHP 5.5+ core functions.

⌈⌋ ⎇ branch:  upgrade.php


Artifact [e08d3d914c]

Artifact e08d3d914c809f1ef38e4ae382daf5df90715fd3:

  • File doc/tests1all/uuencode.phpt — part of check-in [51e3884900] at 2010-06-22 17:03:27 on branch trunk — upgradephp-15 (user: mario size: 229)

--TEST--
uuencode
--FILE--
<?php

$uu = convert_uuencode("ABCDEFGHIJ");
echo "\$uu = \"$uu\"\n\n";

$text = convert_uudecode($uu);
echo "\$text = \"$text\"\n\n";

?>
--EXPECT--
$uu = "*04)#1$5&1TA)2@``
`
"

$text = "ABCDEFGHIJ"