문제

i am trying to make a pdf file with wkhtmltopdf when i pass url www.example.com pdf is generating or www.example.com?id=1

but when i try to put another parameter command execution is not working

www.example.com?id=1&type=u

shell_exec("c:\pdf\wkhtmltopdf.exe http://localhost/test/index.php?id=1&typee=abc test.pdf ");

i try to use it via command line to but its not working there also

thanks for help

도움이 되었습니까?

해결책

The & is causing your command to fail as it has special meaning in shell. Use escapeshellarg() to escape those characters first.

다른 팁

Use escapeshellarg() to escape parameters before passing them to the command line.

This is also mandatory when passing external data (e.g. user input) as parameters.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top