I have a class called Pages used as a namespace, like this:
<?php
static class Pages
{
class Page
{
public $Name;
public $Title;
public function __construct($Name, $Title)
{
$this->Name = $Name;
$this->Title = $Title;
}
}
}
?>
Elsewhere:
<?php
$g_Pages = new Pages::Page("My Name", "My Title");
?>
Unfortunately, I'm getting a Parse error: syntax error, unexpected 'Page' (T_STRING), expecting variable (T_VARIABLE) or '$'
What am I doing wrong?
If you're trying to use the inner class as a namespace, just use namespaces. Ex:
Then you can access the class through:
http://php.net/namespaces