Skip to content

Instantly share code, notes, and snippets.

View L4ZARIN3's full-sized avatar
😮
Hello

Bruno L4ZARIN3

😮
Hello
View GitHub Profile
@guisehn
guisehn / gist:3276302
Last active June 18, 2025 03:36
Validar CNPJ (PHP)
<?php
function validar_cnpj($cnpj)
{
$cnpj = preg_replace('/[^0-9]/', '', (string) $cnpj);
// Valida tamanho
if (strlen($cnpj) != 14)
return false;