| REM **********************************************************
REM PHP 実行
REM **********************************************************
Function RunPhp( strName, bPause )
Dim strPath,strCommand
strPath = Tempdir & "\" & strName & ".php"
Call PutTextFile( strPath, GetInline(strName) )
if bPause then
strCommand = "cmd.exe /c php.exe " & Dd( strPath ) & " & pause"
else
strCommand = "php.exe " & Dd( strPath )
end if
RunSync( strCommand )
End Function
REM **********************************************************
REM PHP パラメータ(置き換え)実行
REM **********************************************************
Function RunPhpParam( strName, bPause, strParamList )
Dim strPath,strCommand,aParam,str,I
aParam = Split(strParamList,",")
strPath = Tempdir & "\" & strName & ".php"
str = GetInline(strName)
For I = 0 to Ubound( aParam ) step 2
str = Replace( str, aParam(I), aParam(I+1) )
Next
Call PutTextFile( strPath, str )
if bPause then
strCommand = "cmd.exe /c php.exe " & Dd( strPath ) & " & pause"
else
strCommand = "php.exe " & Dd( strPath )
end if
RunSync( strCommand )
End Function
| |