PHP code example of typomedia / exeinfo
1. Go to this page and download the library: Download typomedia/exeinfo 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/ */
typomedia / exeinfo example snippets
use Typomedia\Exeinfo\Exeinfo;
$exeinfo = new Exeinfo('php.exe');
print $exeinfo->product;
print $exeinfo->company;
print $exeinfo->comment;
print $exeinfo->copyright;
print $exeinfo->description;
print $exeinfo->version;