芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/PHP/Compat/Function/pg_unescape_bytea.php
| // | Tobias
| // +----------------------------------------------------------------------+ // // $Id: pg_unescape_bytea.php,v 1.2 2005/12/07 21:08:57 aidan Exp $ /** * Replace pg_unescape_bytea() * * @category PHP * @package PHP_Compat * @link http://php.net/function.pg_unescape_bytea * @author Ian Eure
* @version $Revision@ * @since PHP 4.2.0 * @require PHP 4.0.0 */ if (!function_exists('pg_unescape_bytea')) { function pg_unescape_bytea(&$data) { return str_replace( array('$', '"'), array('\\$', '\\"'), $data); } } ?>