isaac_cm Posted December 20, 2006 Share Posted December 20, 2006 Hello,I need to make some PHP utility functions in external file , and call this function with some parameters, can I use require_once statement for that, and how ?thanks Link to comment https://forums.phpfreaks.com/topic/31410-require_once-question/ Share on other sites More sharing options...
JasonLewis Posted December 20, 2006 Share Posted December 20, 2006 you can require_once the file the call the functions...[code=php:0]require_once('file.php');$func = new Function;$func->Connect();[/code]just an example... Link to comment https://forums.phpfreaks.com/topic/31410-require_once-question/#findComment-145486 Share on other sites More sharing options...
trq Posted December 20, 2006 Share Posted December 20, 2006 [quote]can I use require_once statement for that[/quote]Not directly, but of course you can still....[code=php:0]require_once "somefunction.php";$result = somefunction("foo","bar");[/code] Link to comment https://forums.phpfreaks.com/topic/31410-require_once-question/#findComment-145487 Share on other sites More sharing options...
isaac_cm Posted December 20, 2006 Author Share Posted December 20, 2006 thorpe, I prefer your method of calling a function it is very simple and more logical, and thanks to "ProjectFear", could you please explain what those statements do, and why ?$func = new Function;$func->Connect(); Link to comment https://forums.phpfreaks.com/topic/31410-require_once-question/#findComment-145517 Share on other sites More sharing options...
fert Posted December 20, 2006 Share Posted December 20, 2006 [code]$func = new Function;$func->Connect(); [/code]that kind of code is only used for classes. Link to comment https://forums.phpfreaks.com/topic/31410-require_once-question/#findComment-145518 Share on other sites More sharing options...
JasonLewis Posted December 20, 2006 Share Posted December 20, 2006 yeh sorry i was just using a class example. i didnt no if you were using classes or basic functions. if you want to learn about classes search google for OOP. Link to comment https://forums.phpfreaks.com/topic/31410-require_once-question/#findComment-145524 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.