John Smith
John Smith

Reputation: 283

I cant use phpdoc [Could not open input file: \phpdoc.php]

I downloaded phpdoc, and whatever I do, he drops:

Could not open input file: \phpdoc.php

in the console. The path of this file is in the path and php include's path. I did tried him with another php script and it confirmed that (from console). What am I doing wrong?

Upvotes: 2

Views: 2991

Answers (1)

Sergey Eremin
Sergey Eremin

Reputation: 11076

Try following the approach suggested on the main page:

$ pear channel-discover pear.phpdoc.org
$ pear install phpdoc/phpDocumentor-alpha
$ phpdoc -d . -t docs

Upvotes: 2

Related Questions