ホームページ >バックエンド開発 >PHPチュートリアル >Windowsでのphpコマンドラインパラメータ
Microsoft Windows XP [バージョン 5.1.2600]
(C) 版权すべて 1985-2001 Microsoft Corp.
C:Documents and SettingsEVAN>cd c:php5
C:php5>php.exe cli.php uuu
PHP警告: file_get_contents(uuu): ストリームを開けませんでした: C:php5cli.php の 8 行目にそのようなファイルまたはディレクトリ
ベクトルがありません
警告: file_get_contents(uuu): ストリームを開くことができませんでした: そのようなファイルまたはディレクトリ
はありませんC:php5cli.php 8行目
cli.php
コード:
#!c:/php5/php -q array_shift($argv); if (count($argv) ) == 0) { $argv[0] = "php://stdin"; } foreach ($argv as $file) { $lines = split("n", file_get_contents($file, "r ")); shuffle($lines); foreach ($lines as $line) { if ($line !== "") { echo "$linen"; } } } ?> |