dstuecken / php7ify
php7ify is a project that brings new php7 classes and exceptions to php 5.x.
Installs: 149 887
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: ^4.8.36
This package is auto-updated.
Last update: 2024-10-10 10:26:24 UTC
README
php7ify is a project that brings new php7 classes, functions and exceptions to php 5.x
Requirements
- PHP 5.3
Installation
Using Composer
To install php7ify with composer, just add the following to your composer.json file:
{ "require": { "dstuecken/php7ify": "1.0" } }
or by running the following command:
composer require dstuecken/php7ify
Usage
Just use the new \Throwable interface in your php 5 project, or catch an \Error exception.
try { mysql_query(); } catch (Error $e) { echo $e->getMessage() . "\n\n"; echo $e->getTraceAsString(); }