What's the meaning of @var in php comments

后端 未结 6 1560
Happy的楠姐
Happy的楠姐 2021-02-18 20:01

I see this (@var) in php comments a lot and have no clue what it means. Please tell.

// example.php (taken from yii framework application code)



        
6条回答
  •  粉色の甜心
    2021-02-18 20:41

    They are PHPdoc comments and are generally used for IDE-typehinting/code completion (also sometimes documentation-generation, but not in this scenario). They have no relevance on the application itself and can be removed without incident.

提交回复
热议问题