Отправить клавишу Backspace событие для редактирования текста

Ниже приведены два разных возможных решения проблемы пространства имен \ конструктор

//parentclass.php
class parentclass
{
  public function __construct()
  {
    //by default, strip the namespace from class name
    //then attempt to call the constructor
    call_user_func_array([$this,end(explode("\\",get_class($this)))],func_get_args());
  }
}

//foo/bar.php
namespace foo;
class bar extends \parentclass
{
  public function bar($qaz,$wsx)
  {
  //...
  }
}

$abc = new foo\bar(1,2);

и

//parentclass.php
class parentclass
{
  public function __construct()
  {
    //by default, replace the namespace separator (\) with an underscore (_)
    //then attempt to call the constructor
    call_user_func_array([$this,preg_replace("/\\/","_",get_class($this))],func_get_args());
  }
}

//foo/bar.php
namespace foo;
class bar extends \parentclass
{
  public function foo_bar($qaz,$wsx)
  {
  //...
  }
}

$abc = new foo\bar(1,2);
16
задан Suragch 9 September 2016 в 11:06
поделиться