Naming php files

前端 未结 6 624
闹比i
闹比i 2021-02-02 14:08

Is there any convention for naming php files? Not talking about php class files, but files that are mostly HTML with some php inside them. Should it be my-file-example.php

6条回答
  •  滥情空心
    2021-02-02 14:32

    I would suggest you to use underscore separators my_file_example.php, CodeIgniter for example use this convention for it's view files.

    With dashes, some IDE/Text Editor don't select all the filname by double clicking on it, while with underscore it select, generally, all the file name.

提交回复
热议问题