Naming php files

前端 未结 6 623
闹比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:55

    You'll come across packages using filenames as

    class.phpmailer.php or
    ImapMailbox.php
    

    (both containing classes with ClassName {})

    (Personally, I use camelCase heavily for fnames, from var-habits i guess. )

提交回复
热议问题