erika/php/const.php

14 lines
648 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
define('TEXT_MAXLEN', 160);
define('TEXT_MAXLINE', 65);
define('ERIKA_CMD', "./erika.sh");
//define('REGEX_FILTER', '~[^-a-zA-Z0-9äüöÄÜÖß\s,;\.:()°%&²³µ€ç£èé=^_&$§"!+*#\?\t\n\r´`/]~m');
//OK define('REGEX_FILTER', '~[^-a-zA-Z0-9äüöÄÜÖß\s,;\.:()°%&²³µ€ç£èé=^_&$§"!\+\*\?\t\n\r´`/]~m');
define('REGEX_FILTER', '~[^-a-zA-Z0-9äüöÄÜÖß\s,;\.:()°%&²³µ€ç£èé=^_&$§"!\+\*\?\t\n\r´`/\u0035]~m');
//define('REGEX_FILTER', '~[^-a-zA-Z0-9äüöÄÜÖß\s,;\.:()°%&²³µ€ç£èé=^_&$§"!+\*]~m');
define('ZEITDATEI', '/tmp/letztmaliger.aufruf');
define('PAUSEZEIT_MS', 30);
?>