栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

php的注释/注解

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

php的注释/注解

php中的注解, 分为类注解和属性注解.

用注释来定义类的属性
namespace appcommonmodel;

use thinkModel;


class User extends Model{
    protected $name = 'users';
}

$m_User = new User();
echo $m_User->name; //这里就可以使用IDE的自动提示功能了
echo $m_User->gender; //这里就可以使用IDE的自动提示功能了

这种对于模型对象实例化后的栏位(column)调用比较友好.

用来定义未知类型变量的属性
namespace appusercontroller;

use appcommonserviceUserService;
use thinkController;

class baseController extends Controller
{
    
    protected $userService;

    protected function _initialize()
    {
        $this->userService = new UserService();
        if ($this->userService->isGuest()) {
            $this->redirect('user/signin');
        }
    }
    protected function userId()
    {
        return $this->userService->userId(); //这里就可以使用IDE的自动提示功能了
    }
}

再比如:

/ ** @var string | null 应包含描述* /
protected $ description = null;

  
  protected $name, $description;

可以参考 https://www.jianshu.com/p/e7d4b05ba715, 了解更多.

注意: @前必须有一个空格.

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/592308.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号