PHP 类和函数的注释
我想以一些标准格式为我的(PHP)类及其函数添加一些文档注释,以便其他人更容易理解。
如何为以下类和函数编写注释的示例是什么?
有关类的信息:
类名照片:它具有一些与上传照片和显示照片相关的功能。函数名称为 、 、 。upload()
display()
delete()
上传功能信息:
上传调整大小并上传图像,并且具有如下所示的几个参数。
<?php
class Photos extends CI_Controller
{
public function upload($file_name, $new_name, $new_width, $new_height, $directory)
{
...
...
returns true or false.
}
?>