Skip to content

Instantly share code, notes, and snippets.

View awansaif's full-sized avatar
:octocat:
Coding

Saif ur rehman awansaif

:octocat:
Coding
View GitHub Profile
@jwhulette
jwhulette / .php-cs-fixer.dist.php
Created August 12, 2023 20:16
[php-cs-fixer.dist.php] #php
<?php
declare(strict_types=1);
/**
* -----------------------------------------------------
* Enforce the Laravel Code Style using PHP CS Fixer 3.x
* -----------------------------------------------------
* Credits go to Laravel Shift & Andreas Elia.
* https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200.
**/
@cam-gists
cam-gists / validate.php
Created July 9, 2012 06:56
PHP: Regex Validation
<?php
// ref: http://komunitasweb.com/2009/03/10-practical-php-regular-expression-recipes/
// Validate Email
if (filter_var('test+email@fexample.com', FILTER_VALIDATE_EMAIL)) {
echo "Your email is ok.";
} else {
echo "Wrong email address format.";
}
//Validate Username