I've been making an IRC bot in PHP. I've given different users specific access levels between 0 and 5. 0 being a guest and 5 being an admin.
I've been trying to write a command that when a user accesses it, it will send them a list of commands and syntax that they're allowed to use.
So far I have something like this
$array = array
(
"5" => $commands = array
(
"test" => $test2 = array
(
"trigger" => "!test",
"descrip" => "Just testing."
)
"test2" => $test3 = array
(
"trigger" => "!lol",
"descrip" => "another test."
)
)
);
I have no idea how to loop through it so that if ($accessLevel == 5) then show commands for $array[5(and below)]
At the end I want it to send out $array[5][command][trigger] : $array[5][command][descrip]
I don't necessarily need you to code it for me, just a push in the right direction would be helpful.