如何使用记事本++运行带参数的php文件
测试.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?]
如何将“demo_file.php”$_GET['file']
发送到test.php?
控制台最终应该输出:...... hello world