<?php //single or double quotes with single or double backslash in dynamic namespace class. namespace Country_Name{ class Mexico{ function __construct(){ echo __METHOD__,"<br>"; } } $a = 'Country_Name\Mexico';//Country_Name\Mexico::__construct $a = "Country_Name\Mexico"; //Country_Name\Mexico::__construct $a = '\Country_Name\Mexico'; //Country_Name\Mexico::__construct $a = "\Country_Name\Mexico";
