The following three custom functions can be used in PHP applications to help make development easier and faster.
<?php
// Returns TRUE if the given string is a valid URL
function isValidUrl($url) {
return filter_var($url, FILTER_VALIDATE_URL);
}
// Encrypts a string using a given key...