Welcome to PHPBuilder! When posting PHP code, please use the board's [noparse]
..
[/noparse] bbcode tags as they make your code much easier to read and analyze.
lijepdan;11037899 wrote:What does this peace of code means
It means absolutely nothing; the code snippet you posted contained only comments and no actual PHP code.
lijepdan;11037899 wrote:Are these comments
Yes.
lijepdan;11037899 wrote:why are they starting with /** and not with /*
I suspect because the documentation software (e.g. phpDocumentor) expects the former and not the latter (allowing you to use normal multi-line comments without them being misinterpreted by the documentation software).
lijepdan;11037899 wrote:why so many * symbols (each row has one)
Same as above - it's probably what the software expects. That, and it looks pretty.
lijepdan;11037899 wrote:and what does this symbol @ mean?
That depends. In the context of a comment, it means nothing at all to PHP. To other software that manually parses comments... it means whatever the creators of that software intended it to mean. For example, in phpDocumentor, it denotes the start of a tag.
In the context of actual PHP code, it could be the operator used to suppress errors (see [man]operators.errorcontrol[/man]).