[eluser]Nummero2[/eluser]
Hi,
me again :-)
I´m trying the following:
-load all helper in my helpers directory
-search them for a certain test function which if its present its always present in the following context: "xxx_helper_test" (xxx represents the various helper names)
-put the results (where the function was found) in a variable and output the _helper_test function in a foreach loop for each helper file with it.
What I got for now: (thankfully because of your help :-))
<?
$helpers = glob(APPPATH.'helpers/*_helper.php'); //so I got my helper files in an array
?>
So the array outputs as "E:/xampp/htdocs/intranet/system/application/helpers/xxx_helper.php"
and so on for all helpers
Now, how can I search the helpers for the function? Can´t find anything corresponding in the php manual :-(
Help?
Greetings Sebastian