This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST /servico/nododoarquivo.asmx HTTP/1.1 | |
Host: sofis.servehttp.com | |
Content-Type: text/xml; charset=utf-8 | |
Content-Length: length | |
SOAPAction: "http://servidor/NomeDaFuncao" | |
<?xml version="1.0" encoding="utf-8"?> | |
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
<soap:Header> | |
<Credenciais xmlns="http://sofis.com.br/"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$xml = '<Credenciais xmlns="http://sofis.com.br/"><codigo>'.self::CODIGO.'</codigo><senha>'.self::SENHA.'</senha></Credenciais>'; | |
$soapAuthVar = new SoapVar($xml, XSD_ANYXML, null, null, null); | |
$soapAuthHeader = new SoapHeader(self::WSDL, 'Credenciais', $soapAuthVar); | |
$this->soap->__setSoapHeaders( array($soapAuthHeader) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$Produto = EscapeWork::getClass('Produto'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getAvatar() { | |
$email = '[email protected]'; // e-mail de cadastro para pegar as imagens | |
$default = '_img/sem-imagem-perfil.png'; // imagem alternativa para se não existir | |
$size = 25; // tamanho da imagem | |
$grav_url = "http://www.gravatar.com/avatar/" . md5( strtolower( trim( $email ) ) ) . | |
"?d=" . urlencode( $default ) . "&s=" . $size; | |
return $grav_url; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function limitar($string, $tamanho, $encode = 'UTF-8') { | |
if( strlen($string) > $tamanho ) | |
$string = mb_substr($string, 0, $tamanho - 3, $encode) . '...'; | |
else | |
$string = mb_substr($string, 0, $tamanho, $encode); | |
return $string; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$texto = 'Lorem Ipsum is simply dummy text of the printin'; | |
echo limitar($texto, 15); | |
// Escreve na tela "<strong>Lorem Ipsum i...</strong>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cep = new Cep('SEU CEP'); | |
echo $cep->uf; | |
echo $cep->cidade; | |
echo $cep->bairro; | |
echo $cep->logradouro; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$texto = 'ESTA É UMA FRASE COM ACENTUAÇÃO'; | |
echo strtolower( $texto ); // escreve: 'esta �� uma frase com acentua����o' | |
echo mb_strtolower( $texto, 'UTF-8' ); // escreve: 'esta é uma frase com acentuação' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$str = "Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός"; | |
$str = mb_strtolower($str, 'UTF-8'); | |
echo $str; // Prints τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Carregando GIST's por ajax</title> | |
<style type="text/css"> | |
body { | |
font-family: Helvetica, sans-serif; | |
font-size: 13px; |
OlderNewer