X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fplatal.inc.php;h=c6309139537184474590af7a0a0b62b1d30d05bc;hb=7280eb4572904da04e21e02cf84f72fd3133a421;hp=5606f047d5c97b1151929b684d1628aa3a61f61a;hpb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;p=platal.git diff --git a/include/platal.inc.php b/include/platal.inc.php index 5606f04..c630913 100644 --- a/include/platal.inc.php +++ b/include/platal.inc.php @@ -19,14 +19,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ***************************************************************************/ -function microtime_float() -{ - list($usec, $sec) = explode(' ', microtime()); - return ((float)$usec + (float)$sec); -} -$TIME_BEGIN = microtime_float(); - -date_default_timezone_set('Europe/Paris'); +$TIME_BEGIN = microtime(true); define('AUTH_PUBLIC', 0); define('AUTH_COOKIE', 1); @@ -43,9 +36,21 @@ define('NO_SKIN', 2); define('NO_AUTH', 0); define('DO_AUTH', 1); +define('DEBUG_BT', 1); +define('DEBUG_VALID', 2); +define('DEBUG_SMARTY', 4); + function __autoload($cls) { - @include dirname(dirname(__FILE__)).'/classes/'.strtolower($cls).'.php'; + $cls = strtolower($cls); + $path = dirname(dirname(__FILE__)); + if (!@include "$path/classes/$cls.php") { + if (substr($cls, -1, 3) == 'req') { + @include 'validations.inc.php'; + return; + } + @include "$cls.inc.php"; + } } __autoload('Env'); @@ -70,13 +75,13 @@ function pl_error_handler($errno, $errstr, $errfile, $errline) ); global $globals; - if (!$globals->debug) { + if (isset($globals) && !$globals->debug) { if (strpos($errortype[$errno], 'Notice') !== false) { return; } } - $errstr = htmlentities($errstr); + $errstr = utf8_encode(htmlentities($errstr)); $GLOBALS['pl_errors'][] = "
". "{$errortype[$errno]} $errstr
". @@ -84,6 +89,11 @@ function pl_error_handler($errno, $errstr, $errfile, $errline) "
"; } +function pl_clear_errors() +{ + unset($GLOBALS['pl_errors']); +} + function pl_dump_env() { echo "
";
@@ -103,6 +113,24 @@ set_error_handler('pl_error_handler', E_ALL | E_STRICT);
 register_shutdown_function('pl_print_errors');
 // register_shutdown_function('pl_dump_env');
 
+/** Check if the string is utf8 
+ */
+function is_utf8($s)
+{
+    return @iconv('utf-8', 'utf-8', $s) == $s;
+}
+
+/** vérifie si une adresse email est bien formatée  * ATTENTION, cette fonction ne doit pas être appelée sur une chaîne ayant subit un addslashes (car elle accepte le "'" qui it alors un "\'" 
+ * @param $email l'adresse email a verifier 
+ * @return BOOL  */
+function isvalid_email($email) 
+{
+    // la rfc2822 authorise les caractères "a-z", "0-9", "!", "#", "$", "%", "&", "'", "*", "+", "-", "/", "=", "?", "^",  `", "{", "|", "}", "~" aussi bien dans la partie locale que dans le domaine. 
+    // Pour la partie locale, on réduit cet ensemble car il n'est pas utilisé. 
+    // Pour le domaine, le système DNS limite à [a-z0-9.-], on y ajoute le "_" car il est parfois utilisé. 
+    return preg_match("/^[a-z0-9_.'+-]+@[a-z0-9._-]+\.[a-z]{2,4}$/i", $email); 
+}
+
 function pl_url($path, $query = null, $fragment = null)
 {
     global $platal;
@@ -131,5 +159,15 @@ function pl_redirect($path, $query = null, $fragment = null)
     http_redirect($globals->baseurl . '/' . pl_url($path, $query, $fragment));
 }
 
-// vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
+function pl_entities($text, $mode = ENT_COMPAT)
+{
+    return htmlentities($text, $mode, 'UTF-8');
+}
+
+function pl_entity_decode($text, $mode = ENT_COMPAT)
+{
+    return html_entity_decode($text, $mode, 'UTF-8');
+}
+
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
 ?>