Skip to content

Instantly share code, notes, and snippets.

View marcelod's full-sized avatar
🎯
Focusing

Marcelo Diniz marcelod

🎯
Focusing
  • São Paulo - Brasil
View GitHub Profile
@marcelod
marcelod / seconds_to_time.php
Last active July 27, 2022 19:12
Convert seconds to hours : minutes : seconds
<?php
function seconds_to_time($seconds)
{
$normalized = (int) ($seconds ?? 0);
if ($normalized === 0) {
return '00:00:00';
}
@marcelod
marcelod / rand.sql
Created July 30, 2022 01:53
Número aleatório sql
PARA GERAR UM NUMERO ALEATÓRIO NO SQL
-- ALEATORIO: (ALEATORIO() * (MAX - MIN + 1)) + MIN
-- exemplo de chamada
SELECT FLOOR((RAND() * (100-50+1)) + 50) AS ALEATORIO;
@marcelod
marcelod / formatar_cnpj_cpf.md
Created August 18, 2022 22:07 — forked from davidalves1/formatar_cnpj_cpf.md
Função para formatar CNPJ e CPF, disponível em PHP e JS

PHP

function formatCnpjCpf($value)
{
  $CPF_LENGTH = 11;
  $cnpj_cpf = preg_replace("/\D/", '', $value);
  
  if (strlen($cnpj_cpf) === $CPF_LENGTH) {
    return preg_replace("/(\d{3})(\d{3})(\d{3})(\d{2})/", "\$1.\$2.\$3-\$4", $cnpj_cpf);
  } 
# remove specific file from git cache
git rm --cached filename
# remove all files from git cache
git rm -r --cached .
git add .
git commit -m ".gitignore is now working"
@marcelod
marcelod / printing.php
Created May 25, 2023 14:12
Printing In PHP.
<?php
$var = print "Variable";
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>