我正在尝试在我的pdf转换器中使用cookie 正如我发现here看起来像
<?php
$var = mysqli_connect('mysql2.000webhost.com','username','password');
if(!$var){
die('Not connect :' . mysql_error());
}
$database = mysqli_select_db("database",$var);
if(!database){
die("Can't connect : " . mysql_error());
}
?>
所以,我试图解决它,但它总是给我打印一个关于
的错误--cookie <name> <value> Set an additional cookie (repeatable),
value should be url encoded.
我写了IOError: wkhtmltopdf exited with non-zero code 1. error:
**random key** specified in incorrect location
因为它实际上是选项字典中的一个键,没有random key
就可以正常工作。如果我删除那个密钥,他会写任何其他的。
cookie
P.S。
我的wkhtmltopdf适用于options = {
'cookie': 'pysid value',
'page-size': 'A4',
'margin-top': '0.59in',
'margin-right': '1in',
'margin-bottom': '0.59in',
'margin-left': '1in',
'encoding': "UTF-8",
'footer-font-name': 'Times New Roman',
'footer-font-size': 11,
'header-font-name': 'Times New Roman',
'header-font-size': 11,
'header-right': "hehe",
'footer-left': '[isodate]',
'footer-center': '[page]/[topage]',
'header-spacing': 8,
'footer-spacing': 8,
}