<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Learn PHP - TUTORIALS &#187; OBJECT ORIENTED PROGRAMMING</title>
	<atom:link href="http://www.tutorials4php.com/category/object-oriented-programming/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutorials4php.com</link>
	<description>Easy way to learn php &#38; MySQL</description>
	<lastBuildDate>Sun, 04 Jan 2009 05:22:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>OOP In PHP (Object Oriented Programming in PHP)</title>
		<link>http://www.tutorials4php.com/2008/03/28/oop-php-object-oriented-programming-in-php/%</link>
		<comments>http://www.tutorials4php.com/2008/03/28/oop-php-object-oriented-programming-in-php/%#comments</comments>
		<pubDate>Sat, 29 Mar 2008 01:08:11 +0000</pubDate>
		<dc:creator>chaabant</dc:creator>
				<category><![CDATA[OBJECT ORIENTED PROGRAMMING]]></category>

		<guid isPermaLink="false">http://www.tutorials4php.com/14/oop-in-php-object-oriented-programming-in-php/</guid>
		<description><![CDATA[This is a basic introduction on how to use OOP &#8211; Oriented Programming In php 
Declaring a Class




class myClass &#123;


// Class contents go here


&#125;




Instantiating an Object




$myClassInst = new myClass&#40;&#41;;




OOP Class Inheritance




class a &#123;


&#160;


function test&#40;&#41;


&#123;


echo &#34;a::test called&#34;;


&#125;


&#160;


function func&#40;&#41;


&#123;


echo &#34;a::func called&#34;;


&#125;


&#125;


&#160;


&#160;


class b extends a &#123;


&#160;


function test&#40;&#41;


&#123;


echo &#34;b::test called&#34;;


&#125;


&#125;


&#160;


class c extends b &#123;


&#160;


function test&#40;&#41;


&#123;


parent::test&#40;&#41;;


&#125;


&#160;


&#125;


&#160;


class d extends c &#123;


&#160;


function [...]]]></description>
		<wfw:commentRss>http://www.tutorials4php.com/2008/03/28/oop-php-object-oriented-programming-in-php/%/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
