((bool)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_ConnParamBool 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, '((is_null($___mysqli_res = ' . $this->new_name . '(' . $conn . '))) ? false : $___mysqli_res)'); } function getConversionHint() { return 'Generic class for all functions that look like mysql_foo([]) -> ((bool)mysqli_bar())'; } } ?>