From 5e0b9bb4519fa077c0863b67b607a8b9448e8334 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 17 Apr 2003 02:20:26 +0000 Subject: Implement sqlite_escape_string() function. --- ext/sqlite/php_sqlite.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ext/sqlite/php_sqlite.h') diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index 3966c2d24c..206e20c7a2 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 4 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2002 The PHP Group | + | Copyright (c) 1997-2003 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 2.02 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -12,7 +12,7 @@ | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ - | Author: | + | Author: Wez Furlong | +----------------------------------------------------------------------+ $Id$ @@ -56,6 +56,8 @@ PHP_FUNCTION(sqlite_libencoding); PHP_FUNCTION(sqlite_changes); PHP_FUNCTION(sqlite_last_insert_rowid); +PHP_FUNCTION(sqlite_escape_string); + #ifdef ZTS #define SQLITE_G(v) TSRMG(sqlite_globals_id, zend_sqlite_globals *, v) #else -- cgit v1.2.1