Released under the terms of the GNU General Public License.
You should have received a copy of the GNU General Public License,
along with this software. In the main directory, see: /licensing/
If not, see: .
*/
if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
exit ("Do not access this file directly.");
/**/
if (!class_exists ("c_ws_widget__ad_squares_utils_strings"))
{
class c_ws_widget__ad_squares_utils_strings
{
/*
Function escapes double quotes.
*/
public static function esc_dq ($string = FALSE)
{
return preg_replace ('/"/', '\"', $string);
}
/*
Function escapes single quotes.
*/
public static function esc_sq ($string = FALSE)
{
return preg_replace ("/'/", "\'", $string);
}
/*
Function escapes single quotes.
*/
public static function esc_ds ($string = FALSE)
{
return preg_replace ('/\$/', '\\\$', $string);
}
/*
Function that trims deeply.
*/
public static function trim_deep ($value = FALSE)
{
return is_array ($value) ? array_map ('c_ws_widget__ad_squares_utils_strings::trim_deep', $value) : trim ($value);
}
}
}
?>