Ziki's Hideout~The Hideout From Reality~vBulletin Modifications and Hacks WEBSITE FOR SALE INCLUDING ALL HACKS,IF INTERESTED EMAIL TO ADMIN@ZIKIHIDEOUT.COM
Go Back   Ziki's Hideout~The Hideout From Reality~vBulletin Modifications > Webmaster Forum > Tutorials/Articles
Member Area Mods Register RSS Members List Search Today's Posts Mark Forums Read

Tutorials/Articles Programming,template and any other tutorials are located here.


Welcome to the Ziki's Hideout~The Hideout From Reality~vBulletin Modifications forums.

You can download free and paid vBulletin modifications,hacks and styles.You can even find vBulletin services,webmaster and coding help.

You are currently viewing our boards as a guest which gives you limited access to our modifications,hacks and other vBulletin resources.By joining our community, you agree to the forum rules and that you do own a valid vBulletin license

If you have any problems with the registration process or your account login, please contact us.

[How-To]Object Programming in PHP

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old March 27th, 2007, 02:50 PM   #1 (permalink)
Ziki
Owner/Admin
Ziki's Avatar
 
Location: Slovakia
Age: 15
Posts: 242 -- Threads: 37
Total ZCredit: 3100
Rep Power: 10Ziki is on a distinguished road
Send a message via ICQ to Ziki Send a message via Skype™ to Ziki
Default [How-To]Object Programming in PHP

Ok after I learned how to do it I want to teach it in a much easier way.So the base of an object is to create the class which looks something like this:
Quote:
class nameofclass {
//my first class was created


}

Ok we now created a class which will hold the prefix of all functions so now we want to try adding a simple function,for instance:
Quote:
class nameofclass {
function plus ($x, $y)
{
$this->plus = $x + $y;
return $this->plus;
}
}

So now we created a function inside.Notice $this which will be later replaced by the name of the class.

But when you would try to echo it it would give you an error that the function is a non-object.For that we have to construct the actual object:
Quote:
class nameofclass {
function plus ($x, $y)
{
$this->plus = $x + $y;
return $this->plus;
}
}
$nameofclass = new nameofclass();
new indicates that we created a new object.So now we can use $nameofclass->plus(2, 9) which will output 11.Of course you can insert more functions.

This was a very short introduction to OOP.
__________________
This is my signature
Ziki is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old April 20th, 2007, 11:01 AM   #2 (permalink)
spy
Newbie
 
Location: In Middle of Codes.
Age: 15
Posts: 16 -- Threads: 2
Total ZCredit: 95
Rep Power: 6spy is an unknown quantity at this point
Default Re: [How-To]Object Programming in PHP

Great man , Great Tutorial , Thansk a lot
spy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old April 20th, 2007, 01:49 PM   #3 (permalink)
Ziki
Owner/Admin
Ziki's Avatar
 
Location: Slovakia
Age: 15
Posts: 242 -- Threads: 37
Total ZCredit: 3100
Rep Power: 10Ziki is on a distinguished road
Send a message via ICQ to Ziki Send a message via Skype™ to Ziki
Default Re: [How-To]Object Programming in PHP

Thank you .I always explain everything the same way I understand it because it is the easiest way
__________________
This is my signature
Ziki is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




Ziki's Hideout® All Rights Reserved 2004~2008
Powered by vBulletin® Copyright ©2000 - 2007, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0