


Yii framework source code analysis and creation of controller code_PHP tutorial
The URL path using the Yii framework is generally in the form of hostname/?r=xxxx/xxxx/xxxx&sdfs=dsfdsf
We can see that sometimes the controller in the protected directory is used, and sometimes the controller in the module is used. Specifically, how As for processing, please see the following analysis:
The following code is excerpted from the yii framework core code %Yiiroot%/framework/web/CWebApplication.php
================================== ================================================== =============
//1.runController is a method to execute a controller, $route is $_GET['r']
public function runController($route)
{
//Call createController here to create a controller instance first. It can be seen that createController is the key to selecting a controller
if(($ca=$this->createController($route))!== null)
{
list($controller,$actionID)=$ca;
$oldController=$this->_controller;
$this->_controller=$controller;
$controller->init();
$controller->run($actionID);
$this->_controller=$oldController;
}
else
throw new CHttpException (404,Yii::t('yii','Unable to resolve the request "{route}".',
array('{route}'=>$route===''?$this- >defaultController:$route)));
}
================================== ================================================== ===============
//2. Next we analyze createController, assuming that the route we access is site/contact
public function createController($route,$owner= null)
{
//When entering this function for the first time, the $owner parameter is empty
if($owner===null)
$owner=$this;
//If $route If the parameter does not contain /, then use the default controller
if(($route=trim($route,'/'))==='')
$route=$owner->defaultController;
$caseSensitive=$this->getUrlManager()->caseSensitive;
//In order to run the following loop completely, add a / after $route
$route.='/';
//Save the position of / in $pos
while(($pos=strpos($route,'/'))!==false)
{
//$id is the first half part, that is, site
$id=substr($route,0,$pos);
if(!preg_match('/^w+$/',$id))
return null;
if(!$caseSensitive)
$id=strtolower($id);
//$route becomes the second half, that is, contact
$route=(string)substr($route,$pos+ 1);
//Controller root directory or subdirectory prefix
if(!isset($basePath)) // first segment
{
//First time entry, $owner is empty, there is no this Member variable
//If you are not entering for the first time or $owner has a value, this member variable may be set, see CWebModule class
if(isset($owner->controllerMap[$id]))
{
return array(
Yii::createComponent($owner->controllerMap[$id],$id,$owner===$this?null:$owner),
$this-> parseActionParams($route),
);
}
//If an independent module can be obtained through the getModule method, call createController again. This applies to the case where site is the module name. Please refer to protected/config/ main.php configuration file, for example, your controller is in %webroot%/protected/module/site/controller/ContactController.php
if(($module=$owner->getModule($id))!==null )
return $this->createController($route,$module);
//Directory of controller:
//For CWebApplication, corresponds to config['basePath'] (see configuration file)./ controller/, for example, your controller is in %webroot%/protected/controller/SiteController.php
//For the subclass of CModule, correspondingly change the folder where the subclass is located./contoller/, for example, your controller is in %webroot% /protected/module/site/controller/ContactController.php
$basePath=$owner->getControllerPath();
$controllerID='';
}
else
$controllerID. ='/';
$className=ucfirst($id).'Controller';
$classFile=$basePath.DIRECTORY_SEPARATOR.$className.'.php';
//If $classFile exists, Based on the controller class file path obtained above, create a class instance
//If it does not exist, it is the controller in the subdirectory, and continue to loop to find the final controller. For example, your controller is in %webroot%/protected/controller/ somedir/SiteController
if(is_file($classFile))
{
if(!class_exists($className,false))
require($classFile);
if(class_exists($className ,false) && is_subclass_of($className,'CController'))
{
$id[0]=strtolower($id[0]);
return array(
new $className($ controllerID.$id,$owner===$this?null:$owner),
$this->parseActionParams($route),
);
}
return null;
}
$controllerID.=$id;
$basePath.=DIRECTORY_SEPARATOR.$id;
}
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Since the launch of ChatGLM-6B on March 14, 2023, the GLM series models have received widespread attention and recognition. Especially after ChatGLM3-6B was open sourced, developers are full of expectations for the fourth-generation model launched by Zhipu AI. This expectation has finally been fully satisfied with the release of GLM-4-9B. The birth of GLM-4-9B In order to give small models (10B and below) more powerful capabilities, the GLM technical team launched this new fourth-generation GLM series open source model: GLM-4-9B after nearly half a year of exploration. This model greatly compresses the model size while ensuring accuracy, and has faster inference speed and higher efficiency. The GLM technical team’s exploration has not

Evaluating the cost/performance of commercial support for a Java framework involves the following steps: Determine the required level of assurance and service level agreement (SLA) guarantees. The experience and expertise of the research support team. Consider additional services such as upgrades, troubleshooting, and performance optimization. Weigh business support costs against risk mitigation and increased efficiency.

The lightweight PHP framework improves application performance through small size and low resource consumption. Its features include: small size, fast startup, low memory usage, improved response speed and throughput, and reduced resource consumption. Practical case: SlimFramework creates REST API, only 500KB, high responsiveness and high throughput

BitgetLaunchpool is a dynamic platform designed for all cryptocurrency enthusiasts. BitgetLaunchpool stands out with its unique offering. Here, you can stake your tokens to unlock more rewards, including airdrops, high returns, and a generous prize pool exclusive to early participants. What is BitgetLaunchpool? BitgetLaunchpool is a cryptocurrency platform where tokens can be staked and earned with user-friendly terms and conditions. By investing BGB or other tokens in Launchpool, users have the opportunity to receive free airdrops, earnings and participate in generous bonus pools. The income from pledged assets is calculated within T+1 hours, and the rewards are based on

Produced by 51CTO technology stack (WeChat ID: blog51cto) Mistral released its first code model Codestral-22B! What’s crazy about this model is not only that it’s trained on over 80 programming languages, including Swift, etc. that many code models ignore. Their speeds are not exactly the same. It is required to write a "publish/subscribe" system using Go language. The GPT-4o here is being output, and Codestral is handing in the paper so fast that it’s hard to see! Since the model has just been launched, it has not yet been publicly tested. But according to the person in charge of Mistral, Codestral is currently the best-performing open source code model. Friends who are interested in the picture can move to: - Hug the face: https

The learning curve of a PHP framework depends on language proficiency, framework complexity, documentation quality, and community support. The learning curve of PHP frameworks is higher when compared to Python frameworks and lower when compared to Ruby frameworks. Compared to Java frameworks, PHP frameworks have a moderate learning curve but a shorter time to get started.

Choose the best Go framework based on application scenarios: consider application type, language features, performance requirements, and ecosystem. Common Go frameworks: Gin (Web application), Echo (Web service), Fiber (high throughput), gorm (ORM), fasthttp (speed). Practical case: building REST API (Fiber) and interacting with the database (gorm). Choose a framework: choose fasthttp for key performance, Gin/Echo for flexible web applications, and gorm for database interaction.

In Go framework development, common challenges and their solutions are: Error handling: Use the errors package for management, and use middleware to centrally handle errors. Authentication and authorization: Integrate third-party libraries and create custom middleware to check credentials. Concurrency processing: Use goroutines, mutexes, and channels to control resource access. Unit testing: Use gotest packages, mocks, and stubs for isolation, and code coverage tools to ensure sufficiency. Deployment and monitoring: Use Docker containers to package deployments, set up data backups, and track performance and errors with logging and monitoring tools.
