Jump to content

Dynamic classname within a namespace - please help!


biz0r

Recommended Posts

I am stumped as to why this simple code will not work...anyone care to enlighten me?

 

<?
namespace test;

class testClass {
  function go() {
    echo "hello world";
  }
}

$x='testClass';
$t = new $x();
$t->go();
?>

 

Running that code gives me this error:

Fatal error: Class 'testClass' not found in test.php on line 11

 

If I remove the namespace declaration it works fine...anyone?

Link to comment
Share on other sites

Nevermind guys...I found out for variable variables you need to use the full path when referencing a class.

 

The following fixed it for those interested:

<?php
namespace test;

class testClass {
  function go() {
    echo "hello world";
  }
}

$x = __NAMESPACE__.'\\testClass';
$t = new $x();
$t->go();
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.