knobby2k Posted June 14, 2011 Share Posted June 14, 2011 Hi Guys, I wanted to know... is there a way to use a function globally? Currently I am writing a function and saving it as a php page to be called by using include(test.php) I have considered writing a function and storing it at a variable, then creating a session variable to call it later but I don't think that is correct. Am i right in my current method or is there another way? Cheers Link to comment https://forums.phpfreaks.com/topic/239348-using-a-function-globally/ Share on other sites More sharing options...
requinix Posted June 14, 2011 Share Posted June 14, 2011 The closest way is what you have now: put the function in a file and require_once() it. Link to comment https://forums.phpfreaks.com/topic/239348-using-a-function-globally/#findComment-1229561 Share on other sites More sharing options...
knobby2k Posted June 14, 2011 Author Share Posted June 14, 2011 Great, thanks for your reply... sometimes you think you know the right way but someone might know a better one! cheers Link to comment https://forums.phpfreaks.com/topic/239348-using-a-function-globally/#findComment-1229597 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.