1. <?php
    2. namespace game\PC\LOL;
    3. function getinfo(){
    4. echo '我是PC端的LOL<br>';
    5. }
    6. namespace book\web;
    7. function getinfo(){
    8. echo '我是一本关于web的书籍<br>';
    9. }
    10. use game\PC\LOL;
    11. LOL\getinfo();
    12. use book\getinfo();
    13. ?>

    image.png