use $this->CBase(); CBase() is super class ctor
<?php
class CBase
{
var $str;
var $str1 = "abc";
function CBase()
{ $this->str = $this->str1; echo "In CBase Ctor<br>";}
}class CDerived extends CBase
{
var $str1 = "cba"; function CDerived()
{
$this->CBase();
echo "In CDerived Ctor<br>";
}}echo "-------------Test Begin------------------<br>";
$a = new CBase();
$b = new CDerived();
echo $b->str."<br>";
echo "-------------Test End------------------<br>";
?>