\s*(name|id)="[^"]+"\s*
\s*(border)="[^"]+"\s*
border="0" style="display: block"
<?php | |
/** | |
* Controlador da página ... | |
* | |
* @author ... <[email protected]> | |
*/ | |
if( !defined('ESCAPEWORK') ) { | |
exit(); |
<?php | |
/** | |
* Description | |
* | |
* @author Seu nome <[email protected]> | |
*/ | |
class NomeDaClasse extends EscapeWork | |
{ | |
<?php | |
interface Congratulations | |
{ | |
public function congrats(); | |
} | |
class OpenStack implements Congratulations | |
{ | |
static $instance; |
<!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; |
<?php | |
$str = "Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός"; | |
$str = mb_strtolower($str, 'UTF-8'); | |
echo $str; // Prints τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός |
<?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' |
<?php | |
$cep = new Cep('SEU CEP'); | |
echo $cep->uf; | |
echo $cep->cidade; | |
echo $cep->bairro; | |
echo $cep->logradouro; |
<?php | |
$texto = 'Lorem Ipsum is simply dummy text of the printin'; | |
echo limitar($texto, 15); | |
// Escreve na tela "<strong>Lorem Ipsum i...</strong>" |
<?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; | |
} |