Page 1 of 1

"@" Headers in PHP Code

Posted: Sat Jul 14, 2007 10:51 pm
by zaphod2003
In some code, I see in the header of php code this:

Code: Select all

* @version $Id: 
* @package 
* @copyright Copyright © 2007 . All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php

Can someone tell me what the "@" does

Posted: Sat Jul 14, 2007 11:04 pm
by feyd
Nothing for PHP. They are PHPDoc, Doxygen, variants thereof tag markers. The word following them is supposed to be a keyword tag for the documentation processor.

Posted: Sat Jul 14, 2007 11:10 pm
by zaphod2003
Thanks