那,没关系:
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." ");
非常感谢你的帮助......