[PHP-users 12928] Re: Windows 版 PHP-4.3.0 での PEAR インストール方法

Youichi Iwakiri php-users@php.gr.jp
Sat, 01 Feb 2003 10:09:05 +0900


いわきりです

Yamaguchi Hiroshi wrote in <20030201001253.8473.qmail@web304.mail.yahoo.co.jp> :
>仰る通りの手順で試してみたのですが、
>> PHP-4.3.0 for Windows 95/98/Me and on Windows
>> NT/2000/XP
>> ですが、パッケージングミスで、PEARが入っていません。
>C:\php>php -n -r "include 'http://go-pear.org';"
>Error in argument 2, char 2: option not found r
>Error in argument 2, char 2: option not found r
>Error in argument 2, char 2: option not found r
>となってしまい、インストールができません。
>オプションrは確かに存在しないようなのですが、
>どのようにしたら良いでしょうか?
>環境は、W2Kに、(もちろん)PHP4.3.0です。

php-cgi.exeをphp.exeにしていませんか?
古いphp.exeが残っていませんか?

rオプションは、cli版でのみ利用可能なものです。

以下を試してください。

c:\>php -v
PHP 4.3.0 (cli) (built: Dec 27 2002 05:34:00)
Copyright (c) 1997-2002 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2002 Zend Technologies

c:\>php -h
Usage: php [options] [-f] <file> [args...]
       php [options] -r <code> [args...]
       php [options] [-- args...]
  -a               Run interactively
  -c <path>|<file> Look for php.ini file in this directory
  -n               No php.ini file will be used
  -d foo[=bar]     Define INI entry foo with value 'bar'
  -e               Generate extended information for debugger/profiler
  -f <file>        Parse <file>.
  -h               This help
  -i               PHP information
  -l               Syntax check only (lint)
  -m               Show compiled in modules
  -r <code>        Run PHP <code> without using script tags <?..?>
  -s               Display colour syntax highlighted source.
  -v               Version number
  -w               Display source with stripped comments and whitespace.
  -z <file>        Load Zend extension <file>.

  args...          Arguments passed to script. Use -- args when first argument 
                   starts with - or script is read from stdin

-- 
Youichi Iwakiri