Jump to content

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


JongMin

Recommended Posts

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.

 

That's not enough information to say how you would "normally" achieve this, you will need to provide the full context of what you are trying to achieve.  One way would be to extend the common class, but that's situation dependant, It could just be that your class structure is wrong.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.