diff options
author | haturatu <taro@eyes4you.org> | 2024-12-10 21:28:04 +0900 |
---|---|---|
committer | haturatu <taro@eyes4you.org> | 2024-12-10 21:28:04 +0900 |
commit | fe6c36e18042603bb096d3685fe3988e32331ebf (patch) | |
tree | 359c42bed67e5eee7342b2e95810dfe501c69665 /PHP4/README |
Diffstat (limited to 'PHP4/README')
-rw-r--r-- | PHP4/README | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/PHP4/README b/PHP4/README new file mode 100644 index 0000000..b357bad --- /dev/null +++ b/PHP4/README @@ -0,0 +1,40 @@ +base91_encode -- Encodes data with basE91 + + string base91_encode ( string data ) + +base91_encode() returns data encoded with basE91. This encoding is designed to +make binary data survive transport through transport layers that are not 8-bit +clean, such as mail bodies. + +basE91-encoded data takes at most 23% more space than the original data. + +Example: +<?php + require_once 'base91.php'; + $str = 'This is an encoded string'; + echo base91_encode($str); +?> + +This example will produce: + +nX,<:WRT%yV%!5:maref3+1RrUb64^M + +----- + +base91_decode -- Decodes data encoded with basE91 + + string base91_decode ( string encoded_data ) + +base91_decode() decodes encoded_data ignoring non-alphabet characters and +returns the original data. The returned data may be binary. + +Example: +<?php + require_once 'base91.php'; + $str = 'nX,<:WRT%yV%!5:maref3+1RrUb64^M'; + echo base91_decode($str); +?> + +This example will produce: + +This is an encoded string |