7 lines
208 B
PHP
7 lines
208 B
PHP
<?php
|
|
error_reporting(E_ALL | E_STRICT);
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// set multibyte encoding to utf-8 to be sure. Some php configs have not utf-8 by default
|
|
mb_internal_encoding('UTF-8');
|