Как использовать PHP Namespace в коде

Я тихий новичок в объектно-ориентированном PHP. И учимся шагать мудрым новым вещам в нем. Теперь я хочу работать с пространством имен в php. У меня есть 2 файла в 1 каталоге. И я хочу использовать get_name() функция от class.lib в файле index.php, используя пространство имен, но не знаю, как его использовать. Когда я просто включаю файл class.php в index.php, он работает нормально, но вместо этого я хочу использовать пространство имен.

index.php

<?php
interface read_methods 
{
    public function read_age($age);
}
abstract class  person 
{ 
    var $gender;
    var $animal;
    var $birds;
    abstract function group($group);
    function people($value)
    {
        $this->gender=$value;
    }
    final public function animals($value)
    {
        $this->animal=$value;
    }
     function bird($value)
    {
        $this->birds=$value;
    }
}

class behaviour extends person implements read_methods
{   
    function get_all()
    {
        return $this->people();
        return $this->animals();
        return $this->bird();
    }
    function non_human($nonhuman)
    {
        $this->non_human=$nonhuman;
    }
    function read_age($age)
    {       
    try {
        if($age > 20) {
            throw new Exception('Age exceeds!');
        }
        else 
        {
            $this->age=$age;
        }
    }
    catch(Exception $e)
    {
        echo 'There has been an error for the age value : '.$e->getMessage().' <br>' ;
    }               
    }
    function group($group)
    {
        return $this->group=$group;
    }
}
$doerte= new behaviour();  
$doerte ->people(array('male','female'));
$doerte ->animals(array('fish','whale'));
$doerte ->bird(array('parrot','crow'));
$doerte->non_human('alien');
$doerte->read_age('19');
$doerte->group('living_things');
print_r($doerte);
?>

class_lib.php

<?php
class Circle
{
    public $rad;
    function __construct($rad)
    {
        $this->rad=$rad;
    }
    function get_name($name)
    {
        return $this->rad * $this->rad * $name;
    }
}
$Cir = new \Circle(5);
echo $Cir->get_name('30');

1 ответ

Решение

Вступление

Для справки: "Вименах функций используются подчеркивания между словами, а в именах классов используются правила camelCase и PascalCase".

Итак, я буду использовать PascalCase для ваших занятий (избегайте подчеркивания).

Новое дерево для вашего приложения

  • index.php
  • MyLibrary // Папка - содержит все ваши классы
    • Персона // Пакет
      • ReadMethods.class.php
      • Person.class.php
      • Behavior.class.php
    • Draw // Пакет
      • Circle.class.php

Добавление пространства имен

MyLibrary / Person / ReadMethods.class.php

namespace Person;

interface ReadMethods 
{
    public function read_age($age);
}

MyLibrary / Person / Person.class.php

namespace Person;

abstract class Person 
{ 
    /* You should change your var to public/protected/private */
    var $gender;
    var $animal;
    var $birds;
    /* ... */
}

MyLibrary / Person / Поведение

namespace Person;

use \Circle\Draw; // use != require

class Behaviour extends Person implements ReadMethods
{   
    function get_all()
    {
        return $this->people();
        return $this->animals();
        return $this->bird();
    }
    /* ... */
}

MyLibrary / Draw / Circle.class.php

namespace Draw;

class Circle
{
    public $rad;
    function __construct($rad)
    {
        $this->rad=$rad;
    }
    function get_name($name)
    {
        return $this->rad * $this->rad * $name;
    }
}

index.php

/** Your custom autoloader **/
spl_autoload_register( function( $sClass) {
    /* Check File Existence. Define a path for your library folder */
    if(file_exists(YOUR_LIBRARY."{$sClass}.class.php")){
        if( !class_exists($sClass) ){
            require_once YOUR_LIBRARY."{$sClass}.class.php";
        }
    }
});

$doerte= new Person\Behaviour();  
$doerte->people(array('male','female'));
$doerte->animals(array('fish','whale'));
$doerte->bird(array('parrot','crow'));
$doerte->non_human('alien');
$doerte->read_age('19');
$doerte->group('living_things');

Идти дальше

Об использовании ключевого слова: импортируйте класс условно с ключевым словом "использование"

Я надеюсь, что это поможет и что я был явным.

Другие вопросы по тегам