phpDocumentor - Could not open input file: phpdoc.php

后端 未结 7 585
猫巷女王i
猫巷女王i 2021-02-05 09:32

I\'m trying to use phpDocumentor (for the first time, I have no idea what I\'m doing). Actually, I want to use it only with SublimeText 2 and this plugin. Can you guide me step

7条回答
  •  名媛妹妹
    2021-02-05 10:17

    I have changed phpdoc.bat file to point to exactly location of phpdoc.php

    @echo off
    if "%PHPBIN%" == "" set PHPBIN=php.exe
    if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH
    GOTO RUN
    :USE_PEAR_PATH
    set PHPBIN=%PHP_PEAR_PHP_BIN%
    :RUN
    "%PHPBIN%" "C:\wamp\bin\php\php5.3.10\phpdoc.php" %*
    

提交回复
热议问题