PHP code example of pyrsmk / php-class
1. Go to this page and download the library: Download pyrsmk/php-class library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pyrsmk / php-class example snippets
$phpClass = new PhpClass('path/to/a/file.php');
$myObject = $phpClass->instantiate();
$phpClass = new PhpClass('path/to/a/file.php');
echo $phpClass->namespace();
echo $phpClass->classname();
composer