Open mentec opened 10 years ago
É necessário alterar o código nos métodos: setNotificationURL() e setReturnURL(), para que possam receber & na url:
DE: $this->xml->InstrucaoUnica->addChild('URLNotificacao', $url); $this->xml->InstrucaoUnica->addChild('URLRetorno', $url);
PARA: $this->xml->InstrucaoUnica->URLNotificacao = $url; $this->xml->InstrucaoUnica->URLRetorno = $url;
Como informado aqui: http://www.php.net/manual/pt_BR/simplexmlelement.addchild.php#112204
É necessário alterar o código nos métodos: setNotificationURL() e setReturnURL(), para que possam receber & na url:
DE: $this->xml->InstrucaoUnica->addChild('URLNotificacao', $url); $this->xml->InstrucaoUnica->addChild('URLRetorno', $url);
PARA: $this->xml->InstrucaoUnica->URLNotificacao = $url; $this->xml->InstrucaoUnica->URLRetorno = $url;
Como informado aqui: http://www.php.net/manual/pt_BR/simplexmlelement.addchild.php#112204