php – Zend Framework 2表单注释在没有额外空间的情况下被忽略

我花了好几个小时用头撞在墙上.无论如何,我的表单字段的标签都没有出现.

最后发现没有光标所在的额外空间(见图),所有注释都会被忽略.我正在使用ZF 2.1.1和Doctrine Common 2.2.3.

难道我做错了什么?或者这是ZF或Doctrine解析器中的错误?

作品:

   class LoginForm
   {
   /** @Annotation\Type("text")
    * @Annotation\Options({"label":"Store ID:"})
    * @Annotation\Required(true)
    * @Annotation\Filter({"name":"StringTrim"})
    * @Annotation\Validator({"name":"StringLength","options":{"min":2,"max":64}})
    */
   public $sStoreId;
   }

失败,除非/ **之后有空格:

   class LoginForm
   {
   /**
    * @Annotation\Type("text")
    * @Annotation\Options({"label":"Store ID:"})
    * @Annotation\Required(true)
    * @Annotation\Filter({"name":"StringTrim"})
    * @Annotation\Validator({"name":"StringLength","options":{"min":2,"max":64}})
    */
   public $sStoreId;
   }

最佳答案 因为注释使用的是php-doc标准,所以第一行总是用于注释/描述.必须给出.如果您未提供评论/说明,请将该行留空.

点赞