You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »


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 coding template
<?php
/* Copyright <copyright owner> <home page URL> */
 
 	/**
 	 * @file <file name>
 	 * @brief <bried information> \n
 	 * @author <author information>
     */

?>


Example)

php remark example
<?php
/* Copyright Chun Kang <http://qsok.com> */
 
 	/**
 	 * @file /modules/api/register_user.php
 	 * @brief Registger user \n
 	 * @author Chun Kang (ck@qsok.com)
     */

?>


Other topics associated

  • No labels