1. Go to this page and download the library: Download sysvale/helpers library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sysvale / helpers example snippets
use Sysvale\Helpers;
$bankNumber = 12345;
$maskedBank = Helpers::maskBank($bankNumber);
// $maskedBank will be 1234-5
use Sysvale\Helpers;
$cpf = '12345678901';
$maskedCpf = Helpers::maskCpf($cpf);
// $maskedCpf will be 123.456.789-01
use Sysvale\Helpers;
$cpf = '123.456.789-01';
$unMaskedCpf = Helpers::unMaskCpf($cpf);
// $unMaskedCpf will be 12345678901
use Sysvale\Helpers;
$phone = '79988001010';
$maskedPhone = Helpers::maskPhone($phone);
// $maskedPhone will be (79) 98800-1010
use Sysvale\Helpers;
$value = 1234.56;
$maskedMoney = Helpers::maskMoney($value);
// $maskedMoney will be 1.234,56
use Sysvale\Helpers;
$cep = '49000000';
$maskedCep = Helpers::maskCep($cep);
// $maskedCep will be 49000-000
use Sysvale\Helpers;
$cnpj = '12345678000199';
$maskedCnpj = Helpers::maskCnpj($cnpj);
// $maskedCnpj will be 12.345.678/0001-99
use Sysvale\Helpers;
$text = " Text \t \n "; //String with spaces and special caracter;
$text = Helpers::trimpp($text);
// $text will be Text
use Sysvale\Helpers;
$url = 'http://url.com.br';
$url = Helpers::urlNoCache($url);
// $url will be http://url.com.br?1570588480
use Sysvale\Helpers\Validate;
use Sysvale\Helpers\Validate;
$value = '334.734.750-17';
$isValid = Validate::isValidCpf($value);
// true
use Sysvale\Helpers\Validate;
$value = '56.396.710/0001-37';
$isValid = Validate::isValidCnpj($value);
// true
use Sysvale\Helpers\Validate;
$value = '79988001010';
$isValid = Validate::isValidPhone($value);
// true
use Sysvale\Helpers\Validate;
$value = '7033662200';
$isValid = Validate::isValidResidentialPhone($value);
// true
use Sysvale\Helpers\Validate;
$value = '70993662200';
$isValid = Validate::isValidMobilePhone($value);
// true
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.