I don’t know what the consequences of writing the following will be, which is why I raised this question.
Software and versions related to the problem
thinkphp3.2.3
phpstorm 2017.1 (this is what the IDE refers to below)
I write it this way mainly so that the IDE can locate the method location. Due to the D and M methods, the method location cannot be located.
<?php
namespace Home\Logic;
use Home\Model\OrderBulktradeModel;
use Home\Model\OrderBulktradeGoodsModel;
use Home\Model\BulkGoodsModel;
use Home\Model\BusinessUserModel;
use Home\Model\MemberModel;
use Home\Model\MemberBusinessModel;
use Home\Logic\RegionLogic;
use Home\Logic\UserLogic;
class OrderLogic extends HomeLogic
{
public function test()
{
$userObj = new UserLogic();
}
//Omit 10,000 lines of code here
}
Relevant information consulted
ThinkStorm Portal
After my current IDE is installed, it cannot be located.
No problem, this is how I wrote it when I was developing ThinkPHP.
The system comes with model
Model written by myself
Hold down ctrl + left-click the function you want to trace. . .