Rev Author Line No. Line
250 kaklik 1 <?php
2 /* $Id: application_octetstream__hex.inc.php,v 1.1 2005/06/24 14:28:00 nijel Exp $ */
3 // vim: expandtab sw=4 ts=4 sts=4:
4  
5 function PMA_transformation_application_octetstream__hex($buffer, $options = array(), $meta = '') {
6 // possibly use a global transform and feed it with special options:
7 // include('./libraries/transformations/global.inc.php');
8  
9 return chunk_split(bin2hex($buffer), 2, ' ');
10 }
11  
12 ?>