Skip to content

Instantly share code, notes, and snippets.

View thyagofranca's full-sized avatar
👻
focused on goals

Thyago França thyagofranca

👻
focused on goals
  • Thyago França
  • Mauá / SP
View GitHub Profile
const toggleType = document.querySelectorAll('#toggle-type');
const typeName = document.querySelector('#type-name');
const iconsTigela = document.querySelectorAll('#tigela');
const iconsCopo = document.querySelectorAll('#copo');
const imagesTigela = document.querySelectorAll("#img-tigela")
const imagesCopo = document.querySelectorAll("#img-taca")
const handleToggleType = (e) => {
if (e.target.checked) {
@thyagofranca
thyagofranca / valida-cpf.php
Last active November 1, 2020 22:40
Validação de CPF com PHP
<?php
function validaCPF($num_cpf) {
// Verifica se está vazio, e se não é caracteres numéricos
if(empty($num_cpf) && !is_numeric($num_cpf)) {
return false;
}
// Retorna apenas números
$num_cpf = preg_replace("/[^0-9]/is", "", $num_cpf);