我想使用在这里找到的 PHP 脚本导出我的数据库。
当我运行 PHP 脚本时,asql
被创建,但sql
为空。
此外,它还在浏览器中显示此错误:
Strict Standards: Only variables should be passed by reference in C:\xampp\htdocs\test\Export.php on line 12
There was a warning during the export of testing to ~/database/test1.sql
第 12 行是这一行:
exec($command,$output=array(),$worked);
此外,我从示例中更改了输出路径,
$mysqlExportPath ='database/test1.sql';
如何解决这个错误?或者任何其他的例子?