trxyazilim/denisdb

There is no license information available for the latest version (dev-main) of this package.

DenisDB için Yazılmış bir Driver

dev-main 2024-11-16 22:03 UTC

This package is auto-updated.

Last update: 2025-06-16 23:12:25 UTC


README

Denis Database İçin PHP İle bağlantı sağlayıp komut göndermek için bir sürücü

Yükleme

Composer kullanarak yükleyin

  composer require trxyazilim/denisdb

Kullanım

<?php
require_once __DIR__ . '/vendor/autoload.php';

use Trxyazilim\Denisdb\DDConnect; // Doğru namespace'i kullanın



try {
    // DenisDB sunucusuna bağlan
    $db = new DDConnect('127.0.0.1', 5142);
    $db->sendCommand('SET key value');

} catch (Exception $e) {
    echo "Error: " . $e->getMessage() . "\n";
}

İlişkili Projeler

DenisDB