Got an array here:
Array
(
[0] => Securitygroep
[1] => Hoofdgroep
[2] => Belangrijke Groep
[3] => Testgroep2
[4] => Beheergroep
[5] => Mailgroep
[6] => Domeingebruikers
[7] => Gebruikers
)
How can I get all the values from the array in this function?
$check = $adldap->group()->info("//value from array");
Or do I have to execute this function in a sort of looping method?
Like this:
$check = $adldap->group()->info("Securitygroep");
$check = $adldap->group()->info("Hoofdgroep");
$check = $adldap->group()->info("Belangrijke Groep");
etc etc...
foreach.