-1
$xmlSend = <<<TEXT
                    <?xml version="1.0" encoding="UTF-8"?>
                        <VMCAMEXM>
                            <business>
                                <id_company>{$idCompany}</id_company>
                                <id_branch>{$idBranch}</id_branch>
                                <country>{$Country}</country>
                                <user>{$User}</user>
                                <pwd>{$pwd}</pwd>
                            </business>
                            <transacction>
                                <merchant>{$Merchant}</merchant>
                                <reference>50000</reference>
                                <tp_operation>13</tp_operation>
                                <creditcard>
                                    <crypto>{$Crypto}</crypto>
                                    <type>V/MC</type>
                                    <name>{$name}</name>
                                    <number>{$number}</number>
                                    <expmonth>{$expmonth}</expmonth>
                                    <expyear>{$expyear}</expyear>
                                    <cvv-csc>{$cvv}</cvv-csc>
                                </creditcard>
                                <amount>{$cantidad}</amount>
                                <currency>{$Currency}</currency>
                                <usrtransacction>1</usrtransacction>
                            </transacction>
                        </VMCAMEXM>
TEXT;

echo "<pre>";
print_r(htmlspecialchars($xmlSend));
echo "</pre>";

            //$url = $tUrl;         
            $vars = "&xml=" . $rc4->limpiaVariable(urlencode($xmlSend)); 
            $header[] = "Content-type: application/x-www-form-urlencoded";
            $ch = curl_init();
            $postfields = "info_asj3=1".$vars;

             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
             curl_setopt($ch, CURLOPT_URL,$Url);
             curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
             curl_setopt($ch, CURLOPT_TIMEOUT, 250);
             curl_setopt($ch, CURLOPT_POST, true);
             curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
             curl_setopt($ch, CURLOPT_HTTPHEADER, $header);          

             $data = curl_exec($ch);
                if (curl_errno($ch)) {
                   $data = curl_error($ch);          
                } else {
                   curl_close($ch);
                }

我正在与一家使用它连接到 xml 提要的新公司合作。但是使用这个开头<<<TEXT会弄乱它下面的所有代码。我没有收到任何错误,代码可以工作,但是我下面的所有 php 代码都是黑色的,老实说不容易管理。如果我把它拿出来,xml 提要就不能正常工作。有人可以告诉我为什么这是有效的,什么是更好的方法来实现这一点?我到处搜索,找不到关于该主题的任何内容。请帮忙!

提前感谢任何人花时间回答!


您的代码中的错误是:

downloadImage(inContext);

它应该是

 downloadImage(inRef);
4

2 回答 2

2

这是字符串的Heredoc语法。

对字符串使用 Heredoc 对多行字符串有好处,并且可以避免引用问题。

于 2012-09-27T01:41:11.847 回答
0

这是一个 HEREDOC 字符串,如果您遇到问题,可能是由于结束序列的缩进:

文本; //<-- 必须在文本文件的第 0 列。

http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

于 2012-09-27T01:42:32.550 回答