【发布时间】:2014-05-25 07:20:46
【问题描述】:
这个站点是 HTTPS,我想要打开第一页、保存会话而不是打开第二页的 CURL。这可能吗?第一页自动生成语言会话,我需要这个会话。没有这个第二页会出错。
错误:
[8] 未定义索引:lang 文件:/var/www/spa-public/public_html/lib/controller.php - 行:8 [2] require_once(lang/.pack.php):无法打开流:没有这样的文件或目录 文件:/var/www/spa-public/public_html/lib/controller.php - 行:8
我的脚本:
<?php
$postfields = array('lang'=>'ge');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'SECOND_URL');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$result = curl_exec($ch);
echo $result;
?>
【问题讨论】: