�̳���Ϊ�������֪��һ������������ԣ�PHP �Ķ���ģ��Ҳʹ���˼̳С��̳н���Ӱ�쵽�����࣬���������֮��Ĺ�ϵ��
���磬����չһ���࣬����ͻ�̳и������й��еĺ��ܱ����ķ������������า���˸���ķ��������̳еķ������ᱣ����ԭ�й��ܡ�
�̳ж��ڹ��ܵ���ƺͳ����Ƿdz����õģ����Ҷ������ƵĶ��������¹��ܾ�����������д��Щ���õĹ��ܡ�
Note:
����ʹ�����Զ����أ�����һ���������ʹ��֮ǰ�����塣���һ������չ����һ�����������������֮ǰ���������˹�����������̳���������ӿڡ�
Example #1 �̳�ʾ��
<?php
class foo
{
public function printItem($string)
{
echo 'Foo: ' . $string . PHP_EOL;
}
public function printPHP()
{
echo 'PHP is great.' . PHP_EOL;
}
}
class bar extends foo
{
public function printItem($string)
{
echo 'Bar: ' . $string . PHP_EOL;
}
}
$foo = new foo();
$bar = new bar();
$foo->printItem('baz'); // Output: 'Foo: baz'
$foo->printPHP(); // Output: 'PHP is great'
$bar->printItem('baz'); // Output: 'Bar: baz'
$bar->printPHP(); // Output: 'PHP is great'
?>