Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码的小问题:
<?php echo exec(‘cd /home/username/backup/files; tar -cvpzf `date +%y-%m-%d_%H-%M`.tar /home/username/public_html’); ?>
我得到的错误是:
Parse error: syntax error, unexpected ';' on line 1
上面的代码是第 1 行,很高兴找到解决方案。
提前感谢您的时间和精力。
您在命令字符串周围的引号是错误的。
紧随文件之后;
/home/username/backup/files;
你不应该有 ; 文件之后。