1--TEST-- 2023: __NAMESPACE__ constant 3--FILE-- 4<?php 5namespace test\foo; 6 7var_dump(__NAMESPACE__); 8--EXPECT-- 9string(8) "test\foo" 10