I have a class with own methods and on the other side a php file what contains external methods. From documentation is clear that inside of a class includeing external functions is not possible
How could I inculde this functions in my class. Making an another class and extend my first class it can not be an option.
You can call external functions from a class, even if they are not enclosed in a class of their own:
Global.php
ExampleClass.php
Although you probably wouldn’t have the
includein the actual class file.