This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Class Tokenizer { | |
public $dataIn = ""; | |
public $response_header = ""; | |
function __construct($linkIn = '', $link = true) { | |
if ($link) { | |
$arrContextOptions=array( | |
"ssl"=>array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function passwordError ($pwd) { | |
$error=""; | |
if( strlen($pwd) < 8 ) {$error = "Password too short. Must be at least 8 characters.";} | |
elseif( strlen($pwd) > 20 ) {$error = "Password too long. Must be no longer than 20 characters.";} | |
elseif( !preg_match("#[0-9]+#", $pwd) ) {$error = "Password must include at least one number!";} | |
elseif( !preg_match("#[a-zA-Z]+#", $pwd) ) {$error = "Password must include at least one letter!";} | |
//elseif( !preg_match("#[a-z]+#", $pwd) ) {$error = "Password must include at least one lowercase letter!";} | |
//elseif( !preg_match("#[A-Z]+#", $pwd) ) {$error = "Password must include at least one uppercase letter!";} | |
//elseif( !preg_match("#\W+#", $pwd) ) {$error = "Password must include at least one symbol!";} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function friendlyURL($string, $is_file = false, $delimiter = '-'){ | |
if ($is_file) { | |
$name = pathinfo($string, PATHINFO_FILENAME); | |
$ext = pathinfo($string, PATHINFO_EXTENSION); | |
$filename = friendlyUrl($name) . '.' . friendlyUrl($ext); | |
return $filename; | |
} else { | |
$string = preg_replace("`\[.*\]`U","",$string); | |
$string = preg_replace('`&(amp;)?#?[a-z0-9]+;`i', $delimiter, $string); |