Project structure for PHP

后端 未结 5 997
被撕碎了的回忆
被撕碎了的回忆 2021-01-30 11:39

I am new to PHP and want to know the directory structure for the php projects. I have experience in Java and in java we have src contains java source files, WEB-INF contains lib

5条回答
  •  滥情空心
    2021-01-30 12:05

    Unfortunately (or not?) you're very free with PHP. It's up to you.

    Here's my structure:

    framework/
    controllers/             
    models/
    configs/
    files/
    templates/
    themes/
    tmp/
    index.php
    init.php
    .htaccess
    

    You can control the access via .htaccess.

提交回复
热议问题