/**
* Function to secure input strings
*
- * @param $str The unsecured string
- * @param $strip Strip tags
- * @return $str A (hopefully) secured string against XSS and other bad things
+ * @param $str The unsecured string
+ * @param $stripTags Strip tags
+ * @return $str A (hopefully) secured string against XSS and other bad things
*/
-function secureString ($str, $strip = true, $encode = false) {
+function secureString ($str, $stripTags = true, $encode = false) {
// Shall we strip HTML code?
- if ($strip === true) $str = strip_tags($str);
+ if ($stripTags === true) {
+ $str = strip_tags($str);
+ } // END - if
// Trim string
$str = trim($str);
$str = htmlentities($str, ENT_QUOTES);
} // END - if
+ // Replace {,} with entities
+ $str = str_replace(array('{', '}'), array('{', '}'), $str);
+
// Return result
return $str;
}
unset($phpSelfFile);
}
+/**
+ * Checks if PHP_VERSION is newer or equal to given version string
+ *
+ * @param $versionString A PHP'ized version string which shall be compared with PHP_VERSION
+ * @return $isEqualNewer Wether the given version string is equal or newer to PHP_VERSION
+ */
+function isPhpVersionEqualNewer ($versionString) {
+ return (version_compare(PHP_VERSION, $versionString, '>='));
+}
+
/**
* Detects caching in PHP
*
*/
function detectPhpCaching () {
// Activate caching or transparent compressing when it is not already done
- if (phpversion() >= '4.0.4pl1' && (strstr(getenv('HTTP_USER_AGENT'),'compatible') || (strstr(getenv('HTTP_USER_AGENT'), 'Mozilla')))) {
+ if ((isPhpVersionEqualNewer('4.0.4pl1')) && (strstr(getenv('HTTP_USER_AGENT'),'compatible') || (strstr(getenv('HTTP_USER_AGENT'), 'Mozilla')))) {
if ((extension_loaded('zlib')) && (function_exists('ob_start'))) {
// Start caching
$GLOBALS['php_caching'] = 'on';
ini_set('magic_quotes_runtime', false);
ini_set('magic_quotes_gpc', false); // This may not work on some systems
-// No compatibility with Zend Engine 1, else an error like 'Implicit cloning'
-// will be produced.
-if (phpversion() >= '5.0') {
+/*
+ * No compatibility with Zend Engine 1, else an error like 'Implicit cloning'
+ * will be produced.
+ */
+if (isPhpVersionEqualNewer('5.0')) {
ini_set('zend.ze1_compatibility_mode', 'Off');
} // END - if
// Generate arrays which holds the relevante chars to replace
$GLOBALS['security_chars'] = array(
// The chars we are looking for...
- 'from' => array('/', '.', "'", '$', '(', ')', '{--', '--}', '{?', '?}', '%', ';', '[', ']', ':', '--', "\\"),
+ 'from' => array('/', '.', chr(39), '$', '(', ')', '{--', '--}', '{?', '?}', '%', ';', '[', ']', ':', '--', chr(92)),
// ... and we will replace to.
'to' => array(
'{SLASH}',
),
);
-// Characters allowed in URLs
-//
-// Note: Do not replace 'to' with 'from' and vise-versa! When you do this all booked URLs will be
-// rejected because of the {SLASH}, {DOT} and all below listed items inside the URL.
+/*
+ * Characters allowed in URLs
+ *
+ * Note: Do not replace 'to' with 'from' and vise-versa! When you do this all booked URLs will be
+ * rejected because of the {SLASH}, {DOT} and all below listed items inside the URL.
+ */
$GLOBALS['url_chars'] = array(
// Search for these secured characters
'to' => array('{SLASH}', '{DOT}', '{PER}', '{DBL_DOT}', '{COMMENT}'),