Calling a function from within another function is not likely to have much of an effect on speed. More likely it is the functions themselves that are slow. Do you have lots of loops which call functions on a list iteratively? Or are there some intensive functions being used? (preg_* functions for example).
There is no set rules for making a class out of a set of functions. But you should read a little about object oriented programming before setting out on this route.