Я заметил, что у многих скриптов есть комментарии такого типа:
/**
* Retrieve list of themes with theme data in theme directory.
*
* The theme is broken, if it doesn't have a parent theme and is missing either
* style.css and, or index.php. If the theme has a parent theme then it is
* broken, if it is missing style.css; index.php is optional. The broken theme
* list is saved in the {@link $wp_broken_themes} global, which is displayed on
* the theme list in the administration panels.
*
* @since 1.5.0
* @global array $wp_broken_themes Stores the broken themes.
* @global array $wp_themes Stores the working themes.
*
* @return array Theme list with theme data.
*/
function get_themes() {
global $wp_themes, $wp_broken_themes;
...
return $wp_themes;
}
Похоже, что-то вроде документации для функции, но что там со словами, начинающимися с @
?
Например, @since, @global, @return, @access, @param и т. Д. ...?
Я знаю, что они имеют в виду, но почему перед ними стоит @?Нужно ли им идентифицировать себя с каким-то приложением документации ??1009*