PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Natanael Simões   PHP Test Bed   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Test Bed
Test PHP scripts describing what they execute
Author: By
Last change:
Date: 4 years ago
Size: 556 bytes
 

Contents

Class file image Download
<?php include './vendor/autoload.php'; ?>
<!DOCTYPE html>
<html>
    <head>
        <title>PHP-TestBed</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" type="text/css" href="app/css/style.css">
    </head>
    <body>
        <?php
        PhpTestBed
\I18n::setLocale('pt_BR');
       
$options = new \PhpTestBed\ScriptCrawler\Options('test.php');
       
PhpTestBed\ScriptCrawler::getInstance()->run($options);
       
?>
</body>
</html>