Hi!
I'm currently writing some kind of Directory Service (NDS, ActiveDirectory, File System) in PHP which is used for storing, viewing and receiving all sorts of different kind of file formats.
as each of the file formats has individual ways to view or get them, I immediately though that it would be best to realise the program very object oriented.
so far I proceeded very good with that, but just now I found out with some testing that using OO in PHP is very very slow compared to just "plain" function calls. especially if I print out lists of objects where I have to create each object to call a "list-yourself" method it takes 5-8 times as long as with plain function calls.
is there any way to optimise here or is there some know-how involved I'm missing ?
Has someone else already have had experience with OOPHP ??
I would hate to have to throw everything away and write it in "the oldfashioned way" ...