PHP code example of hamboldt / php-doc-reader
1. Go to this page and download the library: Download hamboldt/php-doc-reader 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/ */
hamboldt / php-doc-reader example snippets
/**
* Look this amazing configurable class.
* @configure {"config_name":"config_value"}
*/
class MyConfigurableClass
{
/**
* Look this amazing configurable property!
* @configure {"config_name":"config_value"}
*/
public $property;
}
// array("config_name" => "config_value")
PhpDocReader\Reader::getConfig('MyConfigurableClass');
// array("config_name" => "config_value")
PhpDocReader\Reader::getConfig('MyConfigurableClass', 'property');