# CIPlus-phpstorm-helper **Repository Path**: aicooing/CIPlus-phpstorm-helper ## Basic Information - **Project Name**: CIPlus-phpstorm-helper - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-12-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ***Loading in phpStorm*** 加载你的项目,然后你有两种选择, 设置 include path 或者添加 content root (任选) **Option 1 =** 1. 点击 File > Settings > Directories > Add Content Root > 2. 选择 CIPlus-phpstorm-helper 文件夹进行添加 3. Mark as Plain Text   **Option 2 =**   1. 在project面板中右键 External Libraries > Configure PHP Include Paths 2. 然后添加 CIPlus-phpstorm-helper 路径 3. Mark as Plain Text   #### Mark as Plain Text * /system/core/Controller.php * /system/core/Model.php * /system/database/DB_active_rec.php   右键点击以上文件,点击 Mark as Plain Text,一般文件图标会发生变化   ##### Using the my_models.php Add your models to the docBlock 将你的models添加到文档注释区    Example ```php @property User_model $user_model ```   User_model 是model文件的类名,$user_model是加载后调用的属性名($this->user_model)   Example ```php $this->user_model->row(); ```   一般非魔术方法可以有效显示代码提示,并可以ctrl点击追踪