PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   Emask Notifier   config.php   Download  
File: config.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Emask Notifier
Send SMS messages using an API and notify by email
Author: By
Last change:
Date: 12 days ago
Size: 120 bytes
 

Contents

Class file image Download
<?php

$dotenv
= new Dotenv\Dotenv(__DIR__);
$dotenv->load();

foreach(
$_ENV as $key => $val) {
 
define($key, $val);
}