PHP Package: laminas/laminas-db

Laminas-DB is a powerful PHP library for database operations, supporting various database systems with ease of use and high performance.

Current Version: 2.20.0
Last Updated: 2024-04-02
PHP Requirement: >=7.1
Dependencies: laminas/laminas-servicemanager, laminas/laminas-stdlib
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laminas-DB is a feature-rich PHP library designed to simplify database interactions in web applications. It provides a robust set of tools for connecting to, querying, and managing databases efficiently. With Laminas-DB, developers can streamline database operations and enhance application performance.

🔗 View on GitHub

Download Latest Version: 2.20.0

Download Download v2.20.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/laminas/laminas-db/2.20.0/autoload.php';

use Laminas\Db\Adapter\Adapter;
use Laminas\Db\Adapter\Driver\Pdo\Connection;
use Laminas\Db\Sql\Sql;
use Laminas\Db\TableGateway\TableGateway;
use Laminas\ServiceManager\ServiceManager;
use Laminas\Stdlib\ArrayUtils;


$obj = new Laminas\Db\Adapter\Adapter();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.