本文整理匯總了PHP中Dao::getInvoice方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dao::getInvoice方法的具體用法?PHP Dao::getInvoice怎麽用?PHP Dao::getInvoice使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Dao
的用法示例。
在下文中一共展示了Dao::getInvoice方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: readHeader
include dirname(__FILE__) . '/../../config/config.inc.php';
}
if (file_exists(dirname(__FILE__) . '/dao.class.php')) {
include_once "dao.class.php";
}
/* Variables */
$dao = new Dao();
$key = $_GET["key"];
/* Read header */
function readHeader($c, $str)
{
header($str . "\n");
return strlen($str);
}
/* Get OpenSi invoice */
$return = $dao->getInvoice($key);
if (isset($return[0]['number_invoice'])) {
/* Call webservice - curl */
$c = curl_init();
curl_setopt($c, CURLOPT_URL, Configuration::get('OSI_WS_URL') . '?service_id=' . Configuration::get('OSI_SERVICE_CODE') . '&action=get_facture&facture_ref=' . $return[0]['number_invoice'] . '.pdf');
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_HEADERFUNCTION, "readHeader");
curl_setopt($c, CURLOPT_USERPWD, Configuration::get('OSI_WS_LOGIN') . ':' . Configuration::get('OSI_WS_PASSWD'));
$output = curl_exec($c);
if ($output === false) {
trigger_error("Erreur curl : " . curl_error($c), E_USER_WARNING);
} else {
header('Content-type: application/pdf');
header('Content-Disposition: attachement; filename=facture_' . $return[0]['number_invoice'] . '.pdf');
echo $output;
}