这是代码....它无法合并两个pdf文件...任何人都可以找到代码中的问题...感谢您的时间....
问问题
697 次
1 回答
1
您使用了错误的语法。
正确的代码应该是这样的:
// prepare command escaping paths of your files
$parts = '';
foreach( array( 'file1.pdf', 'file2.pdf' ) as $part )
$parts .= escapeshellarg( $part ) . ' ';
// build command
$command = sprintf( 'pdftk %s cat output %s', $parts, escapeshellarg($output) );
// launch it
system( $command, $returnvalue );
if( $returnvalue ) printf 'There was an error.';
下次注意:请选择更具体的标题并删除不必要的代码。
于 2011-07-06T08:35:17.360 回答