Tato.. Posted November 29, 2011 Report Share Posted November 29, 2011 (edited) Gente, no código abaixo, está sendo apontado um erro na linha 16, só que não consegui identificar qual.Alguém pode me dar uma ajudinha?? heheheObs: Eu botei a linha 16 em negrito.Obrigado!!<?php /** * @author altair * @copyright 2011 */ function QueryString($get, $index, $pasta){ $get = (isset($get)) ? $get : ''; $get = trim($get); $get = strip_tags($get); if(empty($get)){ include("$pasta/$index"); } elseif(eregi("http|www|.php|.asp|.net|.gif|.exe|.jpg|./", $get)){ include("$pasta/$index"); } elseif(!file_exists("$pasta/$get.php")){ include("$pasta/$index"); }else{ include("$pasta/$get.php"); }; }; ?>Segue a foto do erro. Edited November 30, 2011 by Tato.. Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted November 30, 2011 Report Share Posted November 30, 2011 Utilize preg_match ao invés de eregi.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 Tato.. Posted December 1, 2011 Author Report Share Posted December 1, 2011 Obrigado Willian, foi de grande ajuda.. ;D Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted December 1, 2011 Report Share Posted December 1, 2011 Só para complementar, as funções do POSIX Regex Functions serão removidas. Foram marcadas como obsoletas, por isso você recebe estes warnings (eu imaginei que seria isso já que você não postou o erro =). Utilize as PCRE Functions no lugar.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
Tato..
Gente, no código abaixo, está sendo apontado um erro na linha 16, só que não consegui identificar qual.
Alguém pode me dar uma ajudinha?? hehehe
Obs: Eu botei a linha 16 em negrito.
Obrigado!!
Segue a foto do erro.
Edited by Tato..Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.