PHP Classes

File: samples/myPckg/Core/test_linux_class.php

Recommend this page to a friend!
  Classes of adriano ghezzi   ghz PHP Autoloader   samples/myPckg/Core/test_linux_class.php   Download  
File: samples/myPckg/Core/test_linux_class.php
Role: Example script
Content type: text/plain
Description: test class
Class: ghz PHP Autoloader
Autoload classes scanning files in directories
Author: By
Last change:
Date: 5 years ago
Size: 256 bytes
 

Contents

Class file image Download
<?php
/**
 * Created by PhpStorm.
 * User: adriano
 * Date: 27/02/19
 * Time: 7.58
 */

namespace myPckg\Core;


class
test_linux_class
{
    public function
__construct()
    {
        echo
PHP_EOL . "***" . __CLASS__ . " instantiated" . PHP_EOL;
    }

}