

PHP chyba Deprecated: Function eregi_replace() is deprecated
Jak to mám upravit?
Chyba je asi zde:
$file = preg_replace("\.php$","",$file);
Nakolko autor je hulvat (navyse natvrdly) tak vlakno zamykam. (fleg)
Když přepíšu těch 5:
eregi_replace
na
preg_replace
tak mi to hodí chyby:
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 238
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 238
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/install.php on line 251
Ahoja, dělal jsem se s tím doteď a všechno jsem opravil, kromě tohoto:
eregi("([A-z0-9_]*)\[(.*)\]","$val",$match);
$match[2] = eregi_replace("url\(","url(./themes/$skin/",$match [2])
Jak mám toto upravit?
Píše mě to toto:
Deprecated: Function eregi_replace() is deprecated in /home/socialni/public_html/chat/lib/ssgen.php on line 37
Deprecated: Function eregi() is deprecated in /home/socialni/public_html/chat/lib/ssgen.php on line 36
Děkuji
Máš nejaký skrat v hlave? Veď opäť riešia to co má začiatku a odpoveď ke stale tá istá. Nahradiť zastaranu funkciu novou.
Když změním:
eregi("([A-z0-9_]*)\[(.*)\]","$val",$match);
$match[2] = eregi_replace("url\(","url(./themes/$skin/",$match [2])
na:
preg_match("([A-z0-9_]*)\[(.*)\]","$val",$match);
$match[2] = preg_replace("url\(","url(./themes/$skin/",$match[ 2]);
Tak to napíše:
Notice: Undefined offset: 1 in /home/socialni/public_html/chat/lib/ssgen.php on line 38
Warning: preg_match() [function.preg-match]: Unknown modifier '\' in /home/socialni/public_html/chat/lib/ssgen.php on line 36
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /home/socialni/public_html/chat/lib/ssgen.php on line 37