Skip to content

Instantly share code, notes, and snippets.

View mariovalney's full-sized avatar
:shipit:
Code is poetry

Mário Valney mariovalney

:shipit:
Code is poetry
View GitHub Profile
@guisehn
guisehn / gist:3276302
Last active August 28, 2025 11:43
Validar CNPJ (PHP)
<?php
function validar_cnpj($cnpj)
{
$cnpj = preg_replace('/[^0-9]/', '', (string) $cnpj);
// Valida tamanho
if (strlen($cnpj) != 14)
return false;