, Ulf Wendel , Saif Lacrimosa * @copyright 1997-2006 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version CVS: $Id:$, Release: @package_version@ * @link http://www.mysql.com * @since Class available since Release 1.0 */ class MySQLConverterTool_Function_ParReversed extends MySQLConverterTool_Function_Generic { function handle(Array $params = array()) { // mysql_query ( string query [, resource link_identifier] ) // mixed mysqli_query ( mysqli link, string query [, int resultmode] ) if (count($params) < 1 || count($params) > 2) return array(self::PARSE_ERROR_WRONG_PARAMS, NULL); @list($par1, $conn) = $this->extractParamValues($params); if (is_null($conn)) $conn = $this->ston_name; return array(NULL, "$this->new_name($conn, $par1)"); } function getConversionHint() { return 'Generic function for: mysql_func(param1, param2) => mysqli_func(param2, param1). Currently used for mysql_query(), mysql_real_escape_string()'; } } ?>