PHP Класс WPDKDB

1. Export
С версии: 1.7.0
Автор: =undo= ([email protected])
Наследование: extends wpdb
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$mysqli boolean Whether to use mysqli over mysql.

Открытые методы

Метод Описание
__construct ( ) : WPDKDB Create an instance of WPDKDB class
addslashes ( string $value = '', boolean $is_like = false ) : mixed Better addslashes for SQL queries.
backquote ( string | array $value ) : array | string Add backquotes to string or array group. Return a string if input param is a string, otherwise return an array if the input params is an array.
dumpWithTable ( string $table, string $filename = '' ) : string Reads the Database table in $table and creates SQL Statements for recreating structure and data then return the DUMP SQL. If you set the $filename params then the dump is store on filesystem too.
executeQuery ( string $query ) : boolean | mysqli_result | resource Utility to execute a pure query in MySQL or MySQLi extension.
importWithFilename ( string $filename ) : boolean | mysqli_result | resource | WPDKError Utility method to import a SQL (pure) file usually an export.
init ( ) : WPDKDB Return a singleton instance of WPDKDB class
removeComments ( string $query ) : string Return a SQL statement without comments.

Описание методов

__construct() публичный Метод

Create an instance of WPDKDB class
public __construct ( ) : WPDKDB
Результат WPDKDB

addslashes() публичный статический Метод

Taken from phpMyAdmin.
public static addslashes ( string $value = '', boolean $is_like = false ) : mixed
$value string Optional. Default empty.
$is_like boolean Optional. Default FALSE.
Результат mixed

backquote() публичный статический Метод

Add backquotes to string or array group. Return a string if input param is a string, otherwise return an array if the input params is an array.
public static backquote ( string | array $value ) : array | string
$value string | array Table or list of table.
Результат array | string

dumpWithTable() публичный Метод

Taken partially from phpMyAdmin and partially from Alain Wolf, Zurich - Switzerland Website: http://restkultur.ch/personal/wolf/scripts/db_backup/
public dumpWithTable ( string $table, string $filename = '' ) : string
$table string Table name.
$filename string Optional. Complete path of a filename where store the dump.
Результат string

executeQuery() публичный Метод

Utility to execute a pure query in MySQL or MySQLi extension.
public executeQuery ( string $query ) : boolean | mysqli_result | resource
$query string SQL statement.
Результат boolean | mysqli_result | resource

importWithFilename() публичный Метод

Utility method to import a SQL (pure) file usually an export.
public importWithFilename ( string $filename ) : boolean | mysqli_result | resource | WPDKError
$filename string Path of file.
Результат boolean | mysqli_result | resource | WPDKError

init() публичный статический Метод

Return a singleton instance of WPDKDB class
public static init ( ) : WPDKDB
Результат WPDKDB

removeComments() публичный статический Метод

Return a SQL statement without comments.
public static removeComments ( string $query ) : string
$query string SQL statement.
Результат string

Описание свойств

$mysqli публичное свойство

Whether to use mysqli over mysql.
public bool $mysqli
Результат boolean