![]()
PHP: Hypertext Preprocessor is a general-purpose programming language originally designed for web development. It was originally created by Rasmus Lerdorf in 1994; the PHP reference implementation is now produced by The PHP Group. |
Below is the default coding template I use for PHP:
<?php
/* Copyright <copyright owner> <home page URL> */
/**
* @file <file name>
* @brief <bried information> \n
* @author <author information>
*/
?> |
Example)
<?php
/* Copyright Chun Kang <http://qsok.com> */
/**
* @file /modules/api/register_user.php
* @brief Registger user \n
* @author Chun Kang (ck@qsok.com)
*/
?> |
Regarding PHP common settings, please referĀ PHP configuration I commonly use
Other topics associated