LENKRAD - The modern PHP core
Welcome
Docs Starter

Performance meets convenience!

After decades of repetitive tasks, tedious setups & painful workarounds, PHP & LENKRAD is finally ready to ease your pain. Find out why spending a little time on a different framework will put your scepticism to rest.

Why should I be interested in LENKRAD?

Embracing the growth of PHP

Have you ever wondered what kind of overhead & performance restraints you are willing to accept due to backward compatability of legacy frameworks?

Using newer native functions means utilizing the power of C with the syntactic sugar of PHP. Additionally, it's more beautiful:


$movie = 'Anaconda';

// older PHP versions
switch($movie) {
    case 'Anaconda':
        $rating = 3.1;
        break;
    case 'Men in Black':
        $rating = 4.7;
        break;
        ...
}

// since PHP 8.0
$rating = match($movie) {
    'Anaconda' => 3.1,
    'Men in Black' => 4.7,
    ...
}

The question remains: does your framework and its packages work like 2025?