Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

How to use a method across different PHP files(classes)

$
0
0

Hi, 

Please consider the following:

 

 

--------------------------------------------------------------

Cool.php

--------------------------------------------------------------

 

<?php

    include_once "Common.class.php";

    include_once "Test.class.php";

 

    $common = new Common;

 

 

--------------------------------------------------------------

Common.class.php

--------------------------------------------------------------

 

<?php

 

class Common

{

    public blahblah;

 

    public function __construct()

    {

        blah blah

    }

 

    public function initSomething()

    {

         //Do something

    }

}

 

--------------------------------------------------------------

Test.class.php

--------------------------------------------------------------

 

<?php

 

class Test

{

 

    public function __construct()

    {

        initSomething(); // This is the method in the Common class and I want to use it here.

    }

}

 

In Test.class.php I want to use the initSomething() method in the Common class and in this case how do you normally archive this? 

 

Thanks in advance.

 


Viewing all articles
Browse latest Browse all 13200

Trending Articles