notepad++を使用してパラメータを使用してphpファイルを実行する方法
test.php
<?php
/* -------
test.php
------- */
if(!isset($_GET['file'])){
exit;
}
$code=file_get_contents($_GET['file']);
echo $code;
?>
demo_file.php ----- $(FULL_CURRENT_PATH)
コンテンツ:
こんにちは世界
cd "D:\PHPnow-1.5.6\htdocs\zc_default\my_debug_fw"<br>
"d:\PHPnow-1.5.6\php-5.2.14-Win32\php.exe" "test.php" [what here?]
test.phpに関して「demo_file.php」を送信する方法$_GET['file']
は?
コンソールは最終的に次のように出力するはずです。...... hello world