<?php namespace tipi; class Exception { public static $var = 'think in php internal'; } const E_ALL = "E_ALL IN Tipi"; function strlen(){ echo 'strlen in tipi'; } echo Exception::$var; echo strlen(Exception::$var); ?>