i trying to write a comment in each PHP file, then the comment will generated by Doxygen, does anyone know how to write a comment header PHP file?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use your favorite $searchengine to look for “php doxygen tutorial”. I found http://www.doxygen.nl/manual/docblocks.html#specialblock to be helpful.
For PHP, you might also want to look into phpDocumentor or docblox.
Generally, a docblock header in a PHP file looks like this:
I suggest reading the phpDoc quickstart tutorial. Note that doxygen supports the phpdoc syntax.