PHP Classes

File: doc.php

Recommend this page to a friend!
  Classes of Rodolfo Pereira Romano   PHP API Server Builder   doc.php   Download  
File: doc.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP API Server Builder
Build a REST server API from custom classes
Author: By
Last change: Update of doc.php
Date: 8 years ago
Size: 378 bytes
 

Contents

Class file image Download
<?php

/*
 * This example show how is possible to generate document of your API.
 * Not finish yet
 */

include('apibuilder/core/ApiApp.php');
include(
'apibuilder/language/pt-br.php');

/* formats */
include('apibuilder/formats/all_formats.php');

include(
'sampleclass.php');
include(
'apibuilder/apidoc/ApiDoc.php');

$apiDoc = new APIDoc();
$apiDoc->run();
?>