PHP code example of ridi / doxphp

1. Go to this page and download the library: Download ridi/doxphp 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/ */

    

ridi / doxphp example snippets




/**
 * Greets the world
 *
 * @author Bulat Shakirzyanov <[email protected]> (http://avalanche123.com)
 *
 * @param string $world - the world to greet
 *
 * @return void
 */
function hello($world) {
  echo "Hello ${world}";
}
shell
$ doxphp < test.php
...JSON...
console
doxphp < test.php | doxphp2sphinx  > test.rst
rst
.. php:function:: hello

   Greets the world

   :param string $world: - the world to greet

   :returns void:
console
doxphp2docco *.php