phpassassin Posted August 15, 2012 Share Posted August 15, 2012 I just wondering what are this functions names? using this code <table class="content-table" border="0" cellspacing="1" cellpadding="0"> <tr> <th> Index </th> <th> Name </th> </tr> <?php $arr_list = get_defined_functions(); foreach($arr_list['internal'] as $key => $val) { ?> <tr> <td> <?php echo $key ?> </td> <td> <?php echo $val ?> </td> </tr> <?php } ?> </table> These are weird functions. Quote Link to comment Share on other sites More sharing options...
trq Posted August 16, 2012 Share Posted August 16, 2012 They are function names that have been obfuscated by Zend Guard. ( I would assume) Quote Link to comment Share on other sites More sharing options...
phpassassin Posted August 17, 2012 Author Share Posted August 17, 2012 thanks for the clarification sir. Quote Link to comment Share on other sites More sharing options...
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.