Esempio n. 1
0
 private function dumpDatabase()
 {
     passthru("mysqldump -h {$this->database->getHost()} " . "-u {$this->database->getUsername()} " . "-p{$this->database->getPassword()} " . "{$this->database->getDatabaseName()} > {$this->cwd}/develop.sql");
     echo $this->cwd . PHP_EOL;
 }