Clarky Posted February 12, 2007 Share Posted February 12, 2007 I'm getting: Parse error: parse error in /Users/Clarky/Sites/clubDKD/Sources/musicp.php on line 39 with this code: <?php if(!defined('SMF')) die('Hacking attempt...'); global $context,$mp3,$db_prefix; //Some important variables $mp3 = array(); $mp3['db'] = "mp3"; $mp3['dir'] = "modules/osplayer/music"; function in_arrayr($needle, $haystack) { //I'm gonna need this function later, it searches an array recursivley foreach($haystack as $v) { if($needle == $v) { return true; } elseif(is_array($v)) { if(in_arrayr($needle, $v) === true) { return true; } } } return false; } function musicp_buildDB($clean,$add) { //Builds the mp3 database from a mp3 source directory (used to refresh the database) global $mp3; //Load the Database $mp3DB = musicp_loadDB(); Link to comment https://forums.phpfreaks.com/topic/38142-need-an-extra-set-of-eyes/ Share on other sites More sharing options...
ToonMariner Posted February 12, 2007 Share Posted February 12, 2007 if(in_arrayr($needle, $v) === true) no in_arrayr function - remove the 'r' Link to comment https://forums.phpfreaks.com/topic/38142-need-an-extra-set-of-eyes/#findComment-182612 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.