PHP Classes

File: openswoole_html/index.php

Recommend this page to a friend!
  Packages of Ramesh Narayan Jangid (Sharma)   PHP Microservices Framework   openswoole_html/index.php   Download  
File: openswoole_html/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Microservices Framework
Setup microservices apps with configuration arrays
Author: By
Last change: refactor
Date: 7 days ago
Size: 1,093 bytes
 

Contents

Class file image Download
<?php

/**
 * Index
 * php version 8.3
 *
 * @category Start
 * @package Openswoole-Microservices
 * @author Ramesh N. Jangid (Sharma) <polygon.co.in@gmail.com>
 * @copyright © 2026 Ramesh N. Jangid (Sharma)
 * @license MIT https://opensource.org/license/mit
 * @link https://github.com/polygoncoin/Openswoole-Microservices
 * @since Class available since Release 1.0.0
 */

define ('__MODE__', 'private_api'); // private_api/private_web/public
// define ('__MODE__', 'private_web'); // private_api/private_web/public
// define ('__MODE__', 'public'); // private_api/private_web/public

switch (__MODE__) {
    case
'public':
       
$DOMAIN_NAME = 'customer001.localhost'; // Public mode
       
include __DIR__ . DIRECTORY_SEPARATOR . 'session_index.php';
        break;
    case
'private_web':
       
$DOMAIN_NAME = 'web.customer001.localhost'; // Private Session mode
       
include __DIR__ . DIRECTORY_SEPARATOR . 'session_index.php';
        break;
    case
'private_api':
       
$DOMAIN_NAME = 'api.customer001.localhost'; // Private Token mode
       
include __DIR__ . DIRECTORY_SEPARATOR . 'token_index.php';
        break;
}