"@" Headers in PHP Code

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
zaphod2003
Forum Newbie
Posts: 4
Joined: Wed Apr 18, 2007 6:12 am

"@" Headers in PHP Code

Post 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
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post 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.
zaphod2003
Forum Newbie
Posts: 4
Joined: Wed Apr 18, 2007 6:12 am

Post by zaphod2003 »

Thanks
Post Reply