mysqli_func(resource) * * @category Functions * @package MySQLConverterTool * @author Andrey Hristov , 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_ConnParam extends MySQLConverterTool_Function_Generic { function handle(Array $params = array()) { if (count($params) > 1) return array(self::PARSE_ERROR_WRONG_PARAMS, NULL); @list($conn) = $this->extractParamValues($params); if (is_null($conn)) $conn = $this->ston_name; return array(NULL, "$this->new_name($conn)"); } function getConversionHint() { return 'Generic class for all functions that look like mysql_foo([]) -> mysqli_bar()'; } } ?>