I am still having trouble with PHP5 Namespaces.
I have a namespace called Project and I am trying to access a class called registry inside of this Project namespace that has a namespace of Library so at the top of the file that is a Project namespace I use this line use Library\Registry;
Registry class is inside the Library Namespace
This should work but it doesn't, instead the ONLY way to access my registry class inside this Project namespace is to use this
$this->registry = new \Library\Registry;
I want to be able to use this instead...
$this->registry = new Registry;
That was the whole reason of using
use Library\Registry;
at the top of the Project namespace file
Below I have 3 small example scripts in a folder structure like this.
Library/registry.class.php a class in my Library folder
Controller/controller.class.php and class in my Controller directory
Controller/testing.php a test file to run the script.
E:\Library\Registry.class.php file
<?php
namespace Library
{
class Registry
{
function __construct()
{
echo 'Registry.class.php Constructor was ran';
}
}
}
?>
E:\Controller\Controller.class.php file
<?php
use Library\Registry;
namespace Project
{
class Controller
{
public $registry;
function __construct()
{
include('E:\Library\Registry.class.php');
// This is where my trouble is
// to make it work currently I have to use
// $this->registry = new /Library/Registry;
// But I want to be able to use it like below and that is why
// I have the `use Library\Registry;` at the top
$this->registry = new Registry;
}
function show()
{
$this->registry;
echo '<br>Registry was ran inside testcontroller.php<br>';
}
}
}
?>
E:\Controller\testing.php file
<?php
use Project\Controller;
include('testcontroller.php');
$controller = new Controller();
$controller->show();
?>
I get this error...
Fatal error: Class 'Project\Registry' not found in PATH to file
unless I use this below on the controller.class.php file
$this->registry = new \MyLibrary\Registry;
Because in that file at the top I have use Library\Registry; I should be able to access it like this...
$this->registry = new Registry;
Please help me get it where I can use it like that instead
use Library\Registry;
namespace Project
{
I believe that's the wrong way round: you're useing Library\Registry in the global namespace, and then opening the Project namespace.
Put the use statement inside the namespace you want to import it into.
namespace Project
{
use Library\Registry;
You need to import your Registry class inside Project namespace, because you need em there, not in global scope.
<?php
namespace Project
{
use Library\Registry;
class Controller
{
public $registry;
function __construct()
{
include('E:\Library\Registry.class.php');
// This is where my trouble is
// to make it work currently I have to use
// $this->registry = new /Library/Registry;
// But I want to be able to use it like below and that is why
// I have the `use Library\Registry;` at the top
$this->registry = new Registry;
}
function show()
{
$this->registry;
echo '<br>Registry was ran inside testcontroller.php<br>';
}
}
}
?>
Just add:
use \Library\Registry;
at top of your script under the namespace declaration
Then you can just say:
$registry = new Registry;
inside your class
By the way your class declaration is all wrong. You should not wrap your namespace inside curly braces, namespace is not a function.
This is how it should be. Also make sure the class declaration of Library\Registry is already included by either using include('/path/to/registry.php'); or using autoloader
namespace Project;
include('E:\Library\Registry.class.php');
use \Library\Registry;
class Controller
{
public $registry;
function __construct()
{
// This is where my trouble is
// to make it work currently I have to use
// $this->registry = new /Library/Registry;
// But I want to be able to use it like below and that is why
// I have the `use Library\Registry;` at the top
$this->registry = new Registry;
}
function show()
{
$this->registry;
echo '<br>Registry was ran inside testcontroller.php<br>';
}
}
Enjoy
<?php namespace Project;
require_once 'your registry class file';
use \Library\Registry as Registry;
Now you will be able to use...
$this->registry = new Registry;
Related
Is there a PHP namespace extension that allows you to import/use/alias functions as if it was extended directly into the class rather your typical namespace'd silo?
main.php
<?php
namespace api;
class main extends core{
print $this->whoami; // prints computer
}
core.php i.e. class core holding basic functions / standards:
<?php
namespace api;
class core{
function __construct(){
$this->whoami = "computer";
}
}
I want to add modular like classes and or functions that can be directly access from the class i.e.,
function-addon.php:
<?php
namespace api;
function abc($a){
print $a;
}
function-class.php
<?php
namespace api;
class tools{
function tool_a( $a ){
return $a;
}
}
with main.php looking like this (non working sample below):
<?php
namespace api;
use function api\abc as abc;
use api\tools as tools;
class main extends core{
print $this->whoami; // prints computer
print $this->abc(5); // print 5 (desired access)
print tools::tool_a(10); //print 10
}
The goal is "$this->abc" access and not i.e., tools:tool_a.
As I experiment I have a working solution, but I'm not a huge fan of yet as it doesn't use namespaces / aliases.
<?php
namespace api;
require("function-addon.php");
class main extends core{
}
function-addon.php:
<?php
function abc($a){
print $a;
}
Which would then allow the following to work:
<?php
namespace api;
require("function-addon.php");
class main extends core{
function __call( $func, $arg ){
return $this->func($arg);
}
}
The above allows the magic __call function access the locally referenced function-addon.php file.
The solution here is PHP Traits (https://www.php.net/manual/en/language.oop5.traits.php)
Per #nice_dev reference, a PHP trait implements a way to reuse code.
function-addon.php:
<?php
namespace api;
trait tools{
function abc($a;){
return $a;
}
}
Which would then allow the following to work:
<?php
namespace api;
require("function-addon.php");
class main extends core{
use tools;
function __construct(){
$this->abc(5); //returns 5
}
}
Make sure you use namespace in your traits!
Since you're working all within in the same namespace, you don't actually need any imports.
Assuming you're using composer, note that psr-4 doesn't work on autoloading functions. But you can specify "files" to be autoloaded in your composer.json file.
For example you can use:
{
"autoload": {
"psr-4": {
"api\\": "api"
},
"files": ["api/abc.php"]
}
}
Now that we got that out of the way,
Let's say your main file is /index.php:
<?php
use api\main;
require __DIR__ . '/vendor/autoload.php';
echo main::abc(5); // 5
$main = new main();
$main->abc(6); // 6
echo $main->whoami; // computer
The main file would look something like this /api/main.php:
<?php
namespace api;
class main extends core {
public function __call($name, $arguments)
{
if(function_exists(__NAMESPACE__.'\\'.$name)) {
return call_user_func_array(__NAMESPACE__.'\\'.$name, $arguments);
}
}
public static function __callStatic($name, $arguments)
{
if(function_exists(__NAMESPACE__.'\\'.$name)) {
return call_user_func_array(__NAMESPACE__.'\\'.$name, $arguments);
}
}
}
core would look like this: /api/core.php:
<?php
namespace api;
class core{
function __construct(){
$this->whoami = "computer";
}
}
abc.php like this /api/abc.php:
<?php
namespace api;
function abc($a){
print $a;
}
But note that if you need to "import" from another namespace, then you'll probably run into trouble since you need a way to specify which namespace to import from. The imports list, to the best of my knowledge, is a shorthand to save you from typing out the full namespace of whatever you're "importing". But at runtime, the imports list no longer exists, and you can't, for example, use eval in order to take advantage of the import to turn a string like "abc" into "api\abc". You'd need another way to do this.
I'm not much of a fan of __call, and __callStatic, I'd sooner define the methods you're importing.
A good way to do this is through a trait.
Then when you import, you can use a trait, and it will be part of the class.
For example:
/api/xyz.php:
<?php
namespace api;
trait xyz
{
function xyz($a)
{
print $a;
}
}
Then you'd use it like so /api/main.php:
<?php
namespace api;
class main extends core {
use xyz;
}
Then index.php: /index.php
<?php
use api\main;
require __DIR__ . '/vendor/autoload.php';
$main = new main();
$main->xyz(7); // 7
I want a base class to be extended, but I have some errors coming out:
Fatal error: Class 'Api\Services\Base' not found in
/var/www/html/Api/Services/Example.php on line 7
I searched for typos, tried to use the fully qualified name, made the abstract class empty or just defined it as a simple class; none of these helped.
Using "require" instead of "use" worked, but still...
Any idea (the two files are in the same directory: /var/www/html/Api/Services)?
Thanks in advance...
<?php
// Base.php
namespace Api\Services;
use Api\Classes\ErrorHandler;
use Api\Classes\ErrorMessage;
abstract class Base
{
public $data = null;
public function getData()
{
return $this->data;
}
public function setData($data = null)
{
$this->data = $data;
}
}
?>
<?php
// Example.php
namespace Api\Services;
use Api\Services\Base;
class Example extends Base
{
public $request = array();
public function __construct($request = array())
{
$this->request = $request;
}
}
?>
use Base
instead of
use Api\Services\Base;
because you are already inside the namespace Api\Services
Actually, you don't even have to write the use statement, you are inside the namespace, you can just call the classes inside the same namespace without including them (use)
I'm having some trouble to call a function from a namespaced class in a different namespaced class. In the dummy example below I would like to know how to use Class2 within Class1. I'm getting the error:
Trait 'name1\name2\Class2' not found in class1.php
The code:
#file index.php
require "class1.php";
require "class2.php";
$class1 = new name1\Class1();
$class1->sayHello();
#file class1.php
namespace name1{
class Class1{
use name2\Class2;
public function sayHello(){
echo Class2::staticFunction();
}
}
}
#file class2.php
namespace name2{
class Class2{
public static function staticFunction(){
return "hello!";
}
}
}
Thank you for any advice.
Ok, so you've got several errors which I have fixed.
Here's the working code you need:
# index.php
include "class1.php";
include "class2.php";
$class1 = new name1\Class1();
$class1->sayHello();
# class1.php
namespace name1;
use name2\Class2;
class Class1{
public function sayHello(){
echo Class2::staticFunction();
}
}
# class2.php
namespace name2;
class Class2{
public static function staticFunction(){
return "hello!";
}
}
Some explanations:
When in class definition the use is used for using traits and not namespace
In PHP namespace need not be enclosed in curly brackets
In PHP you include files with include, include_once, require, or require_once, and not import
Inside your first class, your trait is calling class2 as use name2\Class2 but, you are still within the name1{} namespace, so in reality you are calling it as: use name1\name2\Class2
So, you need to change
use name2\Class2; to use \name2\Class2
Try this.
namespace name1{
use \name2\Class2;
class Class1{
public function sayHello(){
echo Class2::staticFunction();
}
}
}
#file class2.php
namespace name2{
class Class2{
public static staticFunction(){
return "hello!";
}
}
}
Also, another tip: If you are separating your classes in separate files, you do not need to separate them as in they way you have done. Just call the namespace simple as:
// file1.php
namespace person;
class name{}
//file2.php
namespace address;
class name{}
Why not drop the static method and just inject the class? Seems like going through extra work for something so simple. That's what function arguments are made for.
namespace name1{
use \name2\Class2;
class Class1{
public function sayHello($Class2){
echo $Class2->someFunction();
}
}
}
namespace name2{
class Class2{
public function someFunction(){
return "hello!";
}
}
}
#index.php
include "class1.php";
include "class2.php";
$Class1 = new name1\Class1();
$Class2 = new name2\Class2();
$Class1->sayHello($Class2);
//hello!
so i have a class here that have a function who requires another class to create an object.
I use namespace in both files, my question is can i get rid of this line here: include("class.php"); and instantiate class using namespace?
here is the file from where i call the other class:
namespace namespaceName;
class classLoader{
public function __construct() {
//not used
}
public function executeFunctionOutsideTheNamespace() {
include("class.php");
new classExtended("badass");
}
}
and the class by itself:
namespace namespaceName;
class classExtended extends classBase
{
public function __construct($action) {
echo $action;
}
}
I ask again, using Namespace there is no possibility to get rid of include() or require(), require_once() functions? to call directly new classExtended("badass"); ?
I have a PHP class that I would like to add a namespace to it.
I am using PHP Version 5.5.12 on Windows Server 2008 R2 and Apache 2.4
My Permissions class in located in /classes/Permissions.php
class Permissions
{
private $db;
public function __construct(){
}
public function sayHello(){
echo 'Hello';
}
private function _test(){
}
}
?>
When I want to start a new instance of the class, I do this in a file located "/test.php"
require_once 'classes/Permissions.php';
$r = new Permissions();
$r->sayHello();
And this is working fine.
Now I am trying to add namespace "which I never used before"
I changed my code to implement namespace like so
<?php
namespace classes\Permissions;
class Permissions
{
private $db;
public function __construct(){
}
public function sayHello(){
echo 'Hello';
}
private function _test(){
}
}
?>
and when staring a new instance of the class I do this
require_once 'classes/Permissions.php';
$r = new classes\Permissions();
$r->sayHello();
But with this I get a fatal error
Fatal error: Class 'Permissions' not found
What am I doing wrong? and how to correct it?
If you're going to require the file manually with require_once you're free to put the class under any namespace you like. So you can go:
namespace Foo;
class Permissions {}
You can instantiate this class with:
require_once 'path.to.classfile.php';
$r = Foo\Permissions(); //if you're in global namespace
docs: http://php.net/manual/en/language.namespaces.php
So when you have a class like this:
namespace classes\Permissions;
class Permissions {}
The way to create an object after you include it is with new classes\Permissions\Permissions(); again assuming you're in global namespace.
You should call classes with backslash at begin of namespace.
Try like this:
$r = new \classes\Permissions();
Is not it \classes\Permissions\Permissions()? You have a class Permissions in \classes\Permissions namespace