更改批处理文件

时间:2017-04-19 18:50:50

标签: php windows batch-file vbscript

我在更改php代码时遇到问题,显然更改没有生效,它仍然运行相同的代码。是否有我必须删除的临时文件?

我在注册表上使用srvany.exe在Windows启动时运行.bat,我不确定.vbs文件是做什么的......

file.vbs

Set WinScriptHost = CreateObject("WScript.Shell")
WinScriptHost.Run Chr(34) & "C:\php\batch\file_events_speedfile_serverspeedfile.bat" & Chr(34), 0
Set WinScriptHost = Nothing

file_events_speedfile_serverspeedfile.bat

@ECHO OFF
SET PATH=C:\PHP
php C:\php\apps\file_events_speedfile\file_serverSpeedFile.php

1 个答案:

答案 0 :(得分:0)

解决了,路径有问题,当你使用文件时需要在php中使用绝对路径,当你用.bat文件运行你的php时。 示例

fopen("C:\foldera\appfolder\\something.txt","w");

并记住在文件名

之前使用\\

希望这有助于某人。

非常感谢。