芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/PHP/Compat/Function/pg_escape_bytea.php
| // | Mocha (http://us4.php.net/pg_escape_bytea) | // +----------------------------------------------------------------------+ // // $Id: pg_escape_bytea.php,v 1.1 2005/05/10 07:56:51 aidan Exp $ /** * Replace pg_escape_bytea() * * @category PHP * @package PHP_Compat * @link http://php.net/function.pg_escape_bytea * @author Ian Eure
* @version $Revision@ * @since PHP 4.2.0 * @require PHP 4.0.0 */ if (!function_exists('pg_escape_bytea')) { function pg_escape_bytea($data) { return str_replace( array(chr(92), chr(0), chr(39)), array('\\\134', '\\\000', '\\\047'), $data); } } ?>