1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/sources/includes/ezSQL/ez_sql_mysqli_yourls.php
2014-06-13 07:30:00 +02:00

31 lines
476 B
PHP

<?php
class ezSQL_mysqli_YOURLS extends ezSQL_mysqli {
/**
* Return MySQL server version
*
* @since 1.7
*/
function mysql_version() {
return mysqli_get_server_info( $this->dbh ) ;
}
/**
* Perform mySQL query
*
* Added to the original function: logging of all queries
*
* @since 1.7
*/
function query( $query ) {
// Keep history of all queries
$this->debug_log[] = $query;
// Original function
return parent::query( $query );
}
}