You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var _**con**_ (Object) => MySQLi or PDO connection already opened. (N.B. It is recommended that you use the connection to the database inside the class) [READ CON SECTION](#con)
9
9
10
-
var _**table_name**_ (String or Array) => The tables that you want to backup. [READ TABLE SECTION]()
10
+
var _**table_name**_ (String or Array) => The tables that you want to backup. [READ TABLE SECTION](#-table_name)
11
11
12
-
var _**ext**_ (_String or Array_) [NEW VERSION >= V1.0.7] => The extension of the destination file. [READ EXT SECTION]()
12
+
var _**ext**_ (_String or Array_) [NEW VERSION >= V1.0.7] => The extension of the destination file. [READ EXT SECTION](#execute)
13
13
14
14
var _**fname**_ (String) => The name of the output file/directory secondary
15
15
16
16
var _**folder**_ (String) => The folder where the files will be saved
17
17
18
-
var _**query_limit**_ (Int) => Number of queries at a time to execute in SQL [READ QUERY LIMIT SECTION]()
18
+
var _**query_limit**_ (Int) => Number of queries at a time to execute in SQL [READ QUERY LIMIT SECTION](#query_limit)
19
19
20
20
var _**archive**_ (Bool) => It results as an archive. (.zip|.tar)
21
21
22
22
var _**phpadmin**_ (Bool) => If set to true as a result a file that can be imported with phpadmin (sql|csv)
23
23
24
-
var _**save**_ (Bool) => If set to false, the result will not be saved but will be loaded on the variable of class sql, csv, json (Based on request) [READ SAVE SECTION]()
24
+
var _**save**_ (Bool) => If set to false, the result will not be saved but will be loaded on the variable of class sql, csv, json (Based on request) [READ SAVE SECTION](#save)
25
25
26
26
var _**sql_unique**_ (Bool) => If set to true the SQL dump is a single file with all the tables. (Valid only for the SQL format)
27
27
@@ -44,7 +44,7 @@ $backup = new SQL_Backup();
44
44
* @var $NAME string The MySQL database name.
45
45
* @var $PORT int The port number to use when connecting to the database server otherwise it uses the default port
46
46
* @var $SOCK string The socket name to use when connecting to a local database server otherwise it uses the default socket.
47
-
* @result Bool | object
47
+
* @return Bool | object
48
48
**/
49
49
50
50
public function con($HOST, $USER, $PASSWD, $NAME, $PORT = null, $SOCK = null) {}
0 commit comments