PHP Classes

File: test/connect.php

Recommend this page to a friend!
  Classes of Victor Bolshov   Zephir HandlerSocket Client   test/connect.php   Download  
File: test/connect.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: Zephir HandlerSocket Client
Access MySQL tables as NoSQL with HandlerSocket
Author: By
Last change:
Date: 7 years ago
Size: 362 bytes
 

Contents

Class file image Download
<?php
/**
 * Created by PhpStorm.
 * User: vbolshov <bolshov@tradetracker.com>
 * Date: 5-10-15
 * Time: 20:42
 */

define("ZHS_HOST", "127.0.0.1");
define("ZHS_DBNAME", "test");

return [
   
"dsn" => "mysql:host=" . ZHS_HOST . ";dbname=" . ZHS_DBNAME . ";",
   
"user" => "root",
   
"password" => "masha",
   
"port_read" => 9998,
   
"port_write" => 9999,
];