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
How can you check if a PHP session has already started?How can you check if a PHP session has already started?Apr 30, 2025 am 12:20 AM

In PHP, you can use session_status() or session_id() to check whether the session has started. 1) Use the session_status() function. If PHP_SESSION_ACTIVE is returned, the session has been started. 2) Use the session_id() function, if a non-empty string is returned, the session has been started. Both methods can effectively check the session state, and choosing which method to use depends on the PHP version and personal preferences.

Describe a scenario where using sessions is essential in a web application.Describe a scenario where using sessions is essential in a web application.Apr 30, 2025 am 12:16 AM

Sessionsarevitalinwebapplications,especiallyfore-commerceplatforms.Theymaintainuserdataacrossrequests,crucialforshoppingcarts,authentication,andpersonalization.InFlask,sessionscanbeimplementedusingsimplecodetomanageuserloginsanddatapersistence.

How can you manage concurrent session access in PHP?How can you manage concurrent session access in PHP?Apr 30, 2025 am 12:11 AM

Managing concurrent session access in PHP can be done by the following methods: 1. Use the database to store session data, 2. Use Redis or Memcached, 3. Implement a session locking strategy. These methods help ensure data consistency and improve concurrency performance.

What are the limitations of using PHP sessions?What are the limitations of using PHP sessions?Apr 30, 2025 am 12:04 AM

PHPsessionshaveseverallimitations:1)Storageconstraintscanleadtoperformanceissues;2)Securityvulnerabilitieslikesessionfixationattacksexist;3)Scalabilityischallengingduetoserver-specificstorage;4)Sessionexpirationmanagementcanbeproblematic;5)Datapersis

Explain how load balancing affects session management and how to address it.Explain how load balancing affects session management and how to address it.Apr 29, 2025 am 12:42 AM

Load balancing affects session management, but can be resolved with session replication, session stickiness, and centralized session storage. 1. Session Replication Copy session data between servers. 2. Session stickiness directs user requests to the same server. 3. Centralized session storage uses independent servers such as Redis to store session data to ensure data sharing.

Explain the concept of session locking.Explain the concept of session locking.Apr 29, 2025 am 12:39 AM

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Are there any alternatives to PHP sessions?Are there any alternatives to PHP sessions?Apr 29, 2025 am 12:36 AM

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

Define the term 'session hijacking' in the context of PHP.Define the term 'session hijacking' in the context of PHP.Apr 29, 2025 am 12:33 AM

Sessionhijacking refers to an attacker impersonating a user by obtaining the user's sessionID. Prevention methods include: 1) encrypting communication using HTTPS; 2) verifying the source of the sessionID; 3) using a secure sessionID generation algorithm; 4) regularly updating the sessionID.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools