Minase Posted October 18, 2008 Share Posted October 18, 2008 hy there i was wondering how i can call a random function? i have something like $random = rand(0,1000); function BATTLE 1,2...1000 i want to make something like calling the specific function with help of $random. it is possible? thank you excluding if ,cause with if i should write damn a lot of code =/ which i dont want,even if i can use a loop i want something clear and nice thank you Link to comment https://forums.phpfreaks.com/topic/129016-solved-q-random-function/ Share on other sites More sharing options...
corbin Posted October 18, 2008 Share Posted October 18, 2008 $funcs = array('func1', 'func2', 'func3'); $r = rand(0, count($funcs)); if($r != 0) { $funcs[$r](rand(0, 1000)); } Link to comment https://forums.phpfreaks.com/topic/129016-solved-q-random-function/#findComment-668829 Share on other sites More sharing options...
Minase Posted October 18, 2008 Author Share Posted October 18, 2008 thank you Link to comment https://forums.phpfreaks.com/topic/129016-solved-q-random-function/#findComment-668853 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.