|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /var/www/html/phpMyAdmin/libraries/transformations/ |
Upload File : |
<?php
/* $Id: application_octetstream__hex.inc.php,v 1.1 2005/06/24 14:28:00 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
function PMA_transformation_application_octetstream__hex($buffer, $options = array(), $meta = '') {
// possibly use a global transform and feed it with special options:
// include('./libraries/transformations/global.inc.php');
return chunk_split(bin2hex($buffer), 2, ' ');
}
?>