コード例 #1
0
ファイル: mysql.php プロジェクト: gsomoza/php7-mysql-shim
 function mysql_tablename($result, $row)
 {
     if (\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) {
         // @codeCoverageIgnoreStart
         return false;
         // @codeCoverageIgnoreEnd
     }
     // Alias as per http://lxr.php.net/xref/PHP_5_6/ext/mysql/php_mysql.c#321
     return mysql_result($result, $row, 'Table');
 }