Mysqldump和 - 与"<"不兼容和">",该怎么办?

时间:2015-06-01 07:41:17

标签: php mysql

那,没关系:

exec("C:/wamp/bin/mysql/mysql5.6.17/bin/mysqldump.exe --host=".$host." --user=".$username." --password=".$password." ".$db." ".$table." --where=date_timestamp=1432883235 > ".$rep_local.$file." ");

那( - where = date_timestamp> 1432883235),它不行:

exec("C:/wamp/bin/mysql/mysql5.6.17/bin/mysqldump.exe --host=".$host." --user=".$username." --password=".$password." ".$db." ".$table." --where=date_timestamp>1432883235 > ".$rep_local.$file." ");

因为">"它是我的文件出来的。我该怎么办?

我已经尝试过了:

exec("C:/wamp/bin/mysql/mysql5.6.17/bin/mysqldump.exe --host=".$host." --user=".$username." --password=".$password." ".$db." ".$table." --where="date_timestamp>1432883235" > ".$rep_local.$file." ");

但我有一个错误"意外的date_timestamp"

试了一下:

exec("C:/wamp/bin/mysql/mysql5.6.17/bin/mysqldump.exe --host=".$host." --user=".$username." --password=".$password." ".$db." ".$table." -w"date_timestamp>1432883235" > ".$rep_local.$file." ");

非常感谢你的帮助......

0 个答案:

没有答案