Example #1
0
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
error_reporting(E_ALL & ~E_DEPRECATED);
// check we are running from the command line
if (!isset($argv[0])) {
    die('This program must be run from the command line using the CLI version of PHP');
    // check we are using the correct version of PHP
} elseif (!defined('T_COMMENT') || !extension_loaded('tokenizer') || version_compare(phpversion(), '5', '<')) {
    error('You need PHP version 5 or greater with the "tokenizer" extension to run this script, please upgrade');
    exit;
}
// include PHPDoctor class
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__));
require 'classes' . DIRECTORY_SEPARATOR . 'phpDoctor.php';
// get name of config file to use
if (!isset($argv[1])) {
    if (isset($_ENV['PHPDoctor'])) {
        $argv[1] = $_ENV['PHPDoctor'];
    } elseif (is_file(getcwd() . '/phpdoctor.ini')) {
        $argv[1] = getcwd() . '/phpdoctor.ini';
    } elseif (is_file(dirname(__FILE__) . '/phpdoctor.ini')) {
        $argv[1] = dirname(__FILE__) . '/phpdoctor.ini';
    } else {
        die("Usage: phpdoc [config_file]\n");
    }
}
$phpdoc = new phpDoctor($argv[1]);
$rootDoc =& $phpdoc->parse();
$phpdoc->execute($rootDoc);
Example #2
0
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
error_reporting(E_ALL & ~E_DEPRECATED);
// check we are running from the command line
if (!isset($argv[0])) {
    die('This program must be run from the command line using the CLI version of PHP');
    // check we are using the correct version of PHP
} elseif (!defined('T_COMMENT') || !extension_loaded('tokenizer') || version_compare(phpversion(), '4.3.0', '<')) {
    error('You need PHP version 4.3.0 or greater with the "tokenizer" extension to run this script, please upgrade');
    exit;
}
// include PHPDoctor class
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__));
require 'classes' . DIRECTORY_SEPARATOR . 'phpDoctor.php';
// get name of config file to use
if (!isset($argv[1])) {
    if (isset($_ENV['PHPDoctor'])) {
        $argv[1] = $_ENV['PHPDoctor'];
    } elseif (is_file(getcwd() . '/phpdoctor.ini')) {
        $argv[1] = getcwd() . '/phpdoctor.ini';
    } elseif (is_file('default.ini')) {
        phpDoctor::warning('Using default config file "default.ini"');
        $argv[1] = 'default.ini';
    } else {
        phpDoctor::error('Usage: phpdoc.php [config_file]');
        exit;
    }
}
$phpdoc =& new phpDoctor($argv[1]);
$rootDoc =& $phpdoc->parse();
$phpdoc->execute($rootDoc);