當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Dao::getInvoice方法代碼示例

本文整理匯總了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;
    }
開發者ID:rtajmahal,項目名稱:PrestaShop-modules,代碼行數:31,代碼來源:getInvoice.php


注:本文中的Dao::getInvoice方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。