PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Link2Payment   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Link2Payment
Application to generate links for people to pay
Author: By
Last change:
Date: 1 year ago
Size: 462 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Pierre-Henry Soria <hi@ph7.me>
 * @copyright (c) 2017-2022, Pierre-Henry Soria. All Rights Reserved.
 * @license GNU General Public License; <https://www.gnu.org/licenses/gpl-3.0.en.html>
 */

namespace PH7App;

require
'app/Bootstrap.php';

$oApp = new Bootstrap;
$oApp->initializeDebuggingMode();
$oApp->initializePHPSession();
$oApp->setTimezoneIfNotSet();

ob_start();
$oApp->run(); // Let's go baby!
ob_end_flush();