avo Posted August 18, 2006 Share Posted August 18, 2006 Hi all does anyone know where i can find video tutorials on oop programming with phpmy php is not bad now but i would like to take it to the next level All guidence Appriciated Link to comment https://forums.phpfreaks.com/topic/17960-oop-programming/ Share on other sites More sharing options...
whiteknight Posted August 18, 2006 Share Posted August 18, 2006 No specific examples sorry. But try hunting about university sites that release public stuff like that. Link to comment https://forums.phpfreaks.com/topic/17960-oop-programming/#findComment-76845 Share on other sites More sharing options...
ToonMariner Posted August 18, 2006 Share Posted August 18, 2006 EDITED BY WILDTEEN88: Please do not post illegal file sharing sites.Sorry...Try lynda.com Link to comment https://forums.phpfreaks.com/topic/17960-oop-programming/#findComment-76866 Share on other sites More sharing options...
KittyKate Posted August 18, 2006 Share Posted August 18, 2006 Have you tried googling it? I found a few possible sites with a quick check. If you have never programmed in an OO environment, it can take some adjustment to move from procedural to classes and methods. I'd recommend looking into OO in general, and then starting to apply it to your php. Java has a relatively decent explaination of the topic: http://java.sun.com/docs/books/tutorial/java/concepts/For php, the standard syntax is:[code]class ClassName [extends ParentClass] { function className ($param1, ...) { //this is your constructor, where you set the value of variables } function functionName ($param1, $param2, $optionalParam = 'defaultValue') { } /* keep listing more and more functions */}[/code] Link to comment https://forums.phpfreaks.com/topic/17960-oop-programming/#findComment-76867 Share on other sites More sharing options...
avo Posted August 18, 2006 Author Share Posted August 18, 2006 HI all Thankyou for all your comments Much appriciated Link to comment https://forums.phpfreaks.com/topic/17960-oop-programming/#findComment-76942 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.