Home Backend Development PHP Tutorial Introducing NexaPHP: A Lightweight MVC PHP Framework

Introducing NexaPHP: A Lightweight MVC PHP Framework

Nov 08, 2024 pm 05:35 PM

Introducing NexaPHP: A Lightweight MVC PHP Framework

Building PHP applications often involves a lot of boilerplate code and organization to maintain a clean structure. Many developers reach for frameworks like Laravel or Symfony to handle this, but what if you just need a light, straightforward MVC (Model-View-Controller) framework? NexaPHP might be exactly what you're looking for. This minimalist framework is designed for developers who want a lean structure without all the weight of larger frameworks, making it an ideal choice for learning or creating small to medium-sized applications.


Why NexaPHP?

NexaPHP is tailored for developers who value simplicity and want more control over the core framework functionality. The design of NexaPHP is straightforward and lets you focus on essential aspects of your application without navigating through heavy framework abstractions. Here’s what NexaPHP offers:

  • Lightweight and minimal - Core MVC components without excessive dependencies.
  • Easy setup and configuration - Straightforward configuration for database and routing.
  • Middleware support - Add custom middleware for enhanced request filtering.
  • Event-driven - Use custom events to customize application behavior.

Whether you're a beginner or an experienced developer wanting to learn MVC principles, NexaPHP’s small footprint allows you to dive directly into PHP web development.


Getting Started with NexaPHP

1. Installation

Install NexaPHP via Composer, which makes it easy to integrate into any PHP project:

composer require ravikisha/nexaphp
Copy after login
Copy after login
Copy after login

2. Basic Setup

To initialize a NexaPHP application, configure your application root directory and database details:

use ravikisha\nexaphp\Application;

$config = [
    'userClass' => \app\models\User::class,
    'db' => [
        'dsn' => 'mysql:host=localhost;dbname=testdb',
        'user' => 'root',
        'password' => 'password'
    ]
];

$app = new Application(__DIR__, $config);
Copy after login
Copy after login
Copy after login

This setup includes:

  • userClass: Defines the User model, critical for handling user authentication and management.
  • db: Provides database connection parameters, including Data Source Name (DSN), user, and password.

Key Components in NexaPHP

NexaPHP provides several foundational classes that power its core MVC structure:

  1. Application: Manages the lifecycle of your app and orchestrates different components.
  2. Router: Maps URLs to specific controllers and actions.
  3. Request and Response: Handle HTTP requests and responses.
  4. Database: Manages database connections and queries.
  5. Session: Offers session management functions.
  6. View: Handles the rendering of HTML templates.

Building Your First Controller

Controllers define how NexaPHP handles requests for different routes. Here’s an example of a SiteController:

composer require ravikisha/nexaphp
Copy after login
Copy after login
Copy after login

Using $this->render() renders a view file, while setLayout() can define custom layouts.


Defining Routes

The Router allows you to define GET and POST routes that correspond to specific controller actions:

use ravikisha\nexaphp\Application;

$config = [
    'userClass' => \app\models\User::class,
    'db' => [
        'dsn' => 'mysql:host=localhost;dbname=testdb',
        'user' => 'root',
        'password' => 'password'
    ]
];

$app = new Application(__DIR__, $config);
Copy after login
Copy after login
Copy after login

NexaPHP supports dynamic routes with parameters, allowing you to handle user-specific pages:

namespace app\controllers;

use ravikisha\nexaphp\Controller;

class SiteController extends Controller
{
    public function home()
    {
        return $this->render('home');
    }

    public function contact()
    {
        return $this->render('contact');
    }
}
Copy after login

Database Integration

NexaPHP uses PDO for database interactions, making it easy to integrate with various databases. Here’s a quick overview:

  1. Defining a Model: Use models to interact with database tables.

    $app->router->get('/', [SiteController::class, 'home']);
    $app->router->post('/contact', [SiteController::class, 'contact']);
    
    Copy after login
  2. Migrations: NexaPHP can run migrations to keep the database schema updated:

    $app->router->get('/profile/{id}', [UserController::class, 'profile']);
    
    Copy after login
  3. CRUD Operations: NexaPHP provides methods like save() and findOne() for database operations.


Middleware Support

NexaPHP’s middleware feature allows you to implement request filtering and control. Here’s an example of creating and applying custom middleware:

namespace app\models;

use ravikisha\nexaphp\db\DBModel;

class User extends DBModel
{
    public string $id;
    public string $name;

    public static function tableName(): string
    {
        return 'users';
    }

    public function attributes(): array
    {
        return ['id', 'name'];
    }
}
Copy after login

To register middleware:

$app->db->applyMigrations();
Copy after login

Views and Templating

NexaPHP views offer a simple way to manage HTML templates. By default, templates are stored in the views folder, and you can use layout files to maintain a consistent design.

namespace app\middlewares;

use ravikisha\nexaphp\middlewares\BaseMiddleware;

class AuthMiddleware extends BaseMiddleware
{
    public function execute()
    {
        // Authentication logic
    }
}
Copy after login

Layouts can be defined under views/layouts, and placeholders like {{content}} allow views to be inserted dynamically.


Forms and Fields

NexaPHP offers a convenient form and field builder, making it easy to create dynamic HTML forms:

$this->registerMiddleware(new AuthMiddleware(['profile', 'settings']));
Copy after login

You can render various field types such as password, email, and date fields for different form requirements.


Session Management

The Session class provides session handling, allowing you to set, get, and manage flash messages:

return $this->render('profile', ['name' => 'John Doe']);
Copy after login

This is particularly useful for displaying temporary notifications.


Exception Handling

NexaPHP has built-in support for handling exceptions, including:

  • NotFoundException for invalid routes.
  • ForbiddenException for access control.

User Authentication

User authentication is managed through the abstract UserModel class, which provides foundational methods like login(), logout(), and isGuest().

composer require ravikisha/nexaphp
Copy after login
Copy after login
Copy after login

Sample NexaPHP Application

Below is an example of a basic NexaPHP application setup:

use ravikisha\nexaphp\Application;

$config = [
    'userClass' => \app\models\User::class,
    'db' => [
        'dsn' => 'mysql:host=localhost;dbname=testdb',
        'user' => 'root',
        'password' => 'password'
    ]
];

$app = new Application(__DIR__, $config);
Copy after login
Copy after login
Copy after login

Conclusion

NexaPHP provides a clean and concise way to build MVC applications with PHP. While it’s intended for learning and small projects, it’s a great choice for those who want to understand how an MVC framework works under the hood. Explore the framework on GitHub or install it via Composer to get started.

GitHub: NexaPHP GitHub

Composer: NexaPHP on Packagist

The above is the detailed content of Introducing NexaPHP: A Lightweight MVC PHP Framework. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

See all articles