search
HomeBackend DevelopmentPHP TutorialECMall requests and system jumps_PHP tutorial

ecmall is a framework system based on mvc pattern, which is somewhat similar to thinkphp. Let’s start with the ecmall entrance, ecmall entrance files upload/index.php, admin.php:

index.php starts the ecmall frontend, and after startup, it enters the ecmall framework core file ecmall.php. ecmall.php is equivalent to a dispatch center, receiving different control commands (app) and command-related operations (funciton), and then It performs allocation processing. Then the dispatch center transmits these commands (app) and methods (function) to the specific controller corresponding to the front-end control center. After receiving the command, the "controller" starts to implement execution control, and then passes the processed results to the view template file (template naming rule: appname.fucname.html).

When the controller receives the command and executes it, it can call the model acquisition method &m() of the dispatch center to instantiate a model and perform curd operations on the data.

index.php:

include(ROOT_PATH . '/eccore/ecmall.php');  
/* 启动ECMall */  
ECMall::startup(array(  
    'default_app'   =>  'default',  
    'default_act'   =>  'index',  
    'app_root'      =>  ROOT_PATH . '/app',  
//加载系统所需要的基础类  
    'external_libs' =>  array(  
        ROOT_PATH . '/includes/global.lib.php',  
        ROOT_PATH . '/includes/libraries/time.lib.php',  
        ROOT_PATH . '/includes/ecapp.base.php',  
        ROOT_PATH . '/includes/plugin.base.php',  
        ROOT_PATH . '/app/frontend.base.php',  
    ),  
));  

ecmall.php:

class ECMall  
{  
    /* 启动 */  
    function startup($config = array())  
    {  
        /* 加载初始化文件 */  
        require(ROOT_PATH . '/eccore/controller/app.base.php');     //基础控制器类  
        require(ROOT_PATH . '/eccore/model/model.base.php');   //模型基础类  
  
        if (!emptyempty($config['external_libs']))  
        {  
            foreach ($config['external_libs'] as $lib)  
            {  
                require($lib);  
            }  
        }  
        /* 数据过滤 */  
        if (!get_magic_quotes_gpc())  
        {  
            $_GET   = addslashes_deep($_GET);  
            $_POST  = addslashes_deep($_POST);  
            $_COOKIE= addslashes_deep($_COOKIE);  
        }  
  
        /* 请求转发 */  
        $default_app = $config['default_app'] ? $config['default_app'] : 'default';  
        $default_act = $config['default_act'] ? $config['default_act'] : 'index';  
  
        $app    = isset($_REQUEST['app']) ? trim($_REQUEST['app']) : $default_app;  
        $act    = isset($_REQUEST['act']) ? trim($_REQUEST['act']) : $default_act;  
  
        $app_file = $config['app_root'] . "/{$app}.app.php";  
        if (!is_file($app_file))  
        {  
            exit('Missing controller');  
        }  
  
        require($app_file);  
        define('APP', $app);  
        define('ACT', $act);  
        $app_class_name = ucfirst($app) . 'App';  
  
        /* 实例化控制器 */  
        $app     = new $app_class_name();  
        c($app);  
        $app->do_action($act);        //转发至对应的Action  
        $app->destruct();  
    }  
}  
  
//根据app后面所跟的参数,来判断加载对应的控制器类文件,类文件在app文件夹下,对应名称与参数相同,act后面的参数是对应控制器中的操作方法处理请求  
//而对应的动作中,会有一个判断: if (!IS_POST){请求前的页面内容的显示}else{请求后的表单处理及处理完成后的页面跳转}。其中包括使用json处理数据  
//这里需要提出的是:在控制器中:   
$this->assign('order', $order_info);      //向模板页传递所需要参数的值       
$this->display('buyer_order.confirm.html');//跳转到哪个页面  
$this->json_result($new_data, 'confirm_order_successed');//使用json的方式传递参数,然后在页面上使用javascript处理请求的跳转 

Due to this mechanism, APPs, modules, plug-ins, etc. can be added to ECMALL by yourself. How to add your own APP in ECMALL? For example, the access address is http://xxx.com/index.php?app=hello

  1. Create a new application file named hello.app.php in the app directory of ecmall
  2. Create the corresponding language file hello.lang.php in the sc-utf8 directory of languages, and return an array (if not created, an error will occur)
  3. The class in hello.app.php is HelloApp and inherits FrontendApp
  4. This is a front-end program. Create a hello.index.html template file in the themes/mall/default folder of ecmall
  5. Override the default index method and use template output:
  6. $h = "Hello";  
        $this->assign("h",$h);  
        $this->display('hello.index.html');  
    
  7. Write other methods such as access address http://xxx.com/index.php?app=hello&act=test

This URL accesses the test method in the app class named hello. In fact, http://xxx.com/index.php?app=hello accesses the index method by default.

//1、在upload/app/下建立一个test.app.php  
<?php  
class TestApp extends MallbaseApp  
{  
	public function index()  
	{  
		$str="hello world";  
		$uc_first= ucfirst($str).'<br>';  
		$uc_words=ucwords($str).'<br>';  
           
    	$Model=&m('goods');  
    	$res=$Model->get(27);  
   		print_r($res);  
       
       
     	$this->assign('ss',$uc_first);  
    	$this->assign('sss',$uc_words);  
     	$this->display('test.index.html');   
	}  
}     
?>  
   
//2、在upload/languages/sc-utf-8/下建立一个test.lang.php  
<?php  
	return array();             
?>  
   
//  3、在upload/themes/mall/default/建立一个test.index.html  

admin.php This is to start the ecmall background. After startup, also enter the ecmall framework core file ecmall.php. The subsequent operations are similar to those at the front desk. The difference is that the dispatch center passes the command to the "backstage" control center. But the model called by the controller is the same model center.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752396.htmlTechArticleecmall is a framework system based on mvc mode, which is somewhat similar to thinkphp. Let’s start with the ecmall entrance. The ecmall entrance files upload/index.php and admin.php: index.php starts the ecmall front desk and starts...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment