/** * validates a postcode; alias-function * * @access public * @param string the postcode to be validated * @param bool optional; strong checks (e.g. against a list of postcodes) * @return bool */ function postcode($postcode, $strong = false) { // $strong is not used here at the moment; added for API compatibility // checks might be added at a later stage return cep($postcode); }
$elements = $doc->getElementsByTagName('table'); echo "<br>\n\t<h4>Resultado:</h4>\n\t<table class='uk-table uk-table-hover uk-table-condensed uk-table-striped uk-text-nowrap uk-panel-box' style='font-size: 10px;padding: 2px;'>"; if (!is_null($elements)) { $n = 0; foreach ($elements as $element) { $nodes = $element->childNodes; foreach ($nodes as $node) { $colunas = $node->childNodes; $endereco = ""; foreach ($colunas as $coluna) { $endereco = $endereco . $coluna->nodeValue; } if ($n > 0) { echo "<tr onclick='selecionarcep(" . $n . ")' id='" . $n . "' class='uk-modal-close'>"; foreach ($colunas as $coluna) { echo "<td style='max-width: 100px !important;width:auto;' class='uk-text-truncate'>" . mb_convert_encoding($coluna->nodeValue, 'ISO-8859-1', 'UTF-8') . "</td>"; } echo "</tr>"; } $n = $n + 1; } } } echo "</table>"; } function logradouro($a) { } if (isset($_POST['metodo']) and isset($_POST['filtro'])) { cep($_POST['filtro']); }