Documentation TYPO3 par Ameos |
00001 <?php 00002 /* $Id: application_octetstream__hex.inc.php,v 1.1 2005/06/24 14:28:00 nijel Exp $ */ 00003 // vim: expandtab sw=4 ts=4 sts=4: 00004 00005 function PMA_transformation_application_octetstream__hex($buffer, $options = array(), $meta = '') { 00006 // possibly use a global transform and feed it with special options: 00007 // include('./libraries/transformations/global.inc.php'); 00008 00009 return chunk_split(bin2hex($buffer), 2, ' '); 00010 } 00011 00012 ?>