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