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. Link to comment https://forums.phpfreaks.com/topic/267120-weird-functions-list/ 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) Link to comment https://forums.phpfreaks.com/topic/267120-weird-functions-list/#findComment-1369788 Share on other sites More sharing options...
phpassassin Posted August 17, 2012 Author Share Posted August 17, 2012 thanks for the clarification sir. Link to comment https://forums.phpfreaks.com/topic/267120-weird-functions-list/#findComment-1370162 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.