Is it possible that is mentioned in the title? Python module style. See This Example, What I Definitely Mean.
index.php
<?php use Hello\World; World::greet();
Hello /World.php
<?php namespace Hello\World; function greet() { echo 'Hello, World!'; }
Is it possible?
python php module namespaces autoload
izym
source share