|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-06-23 17:22 UTC] pollita@php.net
-Status: Open
+Status: Wont fix
[2016-06-23 17:22 UTC] pollita@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ Activescript running in ASP, but Doesn't exist ASP type library in $GLOBALS. Underly, not useable STDOUT and STDIN. Reproduce code: --------------- <%@ Language = "PHPScript" %> <% // test.asp //$Response->Write('threedot is googleman'); // it's doesn't working /* -- working region -- */ $xs = fopen('hehehe.txt','w'); fwrite($xs,print_r($GLOBALS, true)); fclose($xs); /* -- working region -- */ %> --------------------------------------- <job id="test"> <script language="PHPScript"> // test.wsf //$WScript->Echo('threedot is googleman'); // this is working already /* -- working region -- */ $fp = fopen('hehehe.txt','w'); fwrite($fp,print_r($GLOBALS,true)); fclose($fp); /* -- working region -- */ </script> </job> Expected result: ---------------- test.asp results Array ( [GLOBALS] => Array *RECURSION* [_ENV] => Array ( ... ) [HTTP_ENV_VARS] => Array ( ... ) [_POST] => Array ( ) [HTTP_POST_VARS] => Array ( ) [_GET] => Array ( ) [HTTP_GET_VARS] => Array ( ) [_COOKIE] => Array ( ) [HTTP_COOKIE_VARS] => Array ( ) [_SERVER] => Array ( [REQUEST_TIME] => 1182769334 [argv] => Array ( ) [argc] => 0 ) [HTTP_SERVER_VARS] => Array ( [REQUEST_TIME] => 1182769334 [argv] => Array ( ) [argc] => 0 ) [_FILES] => Array ( ) [HTTP_POST_FILES] => Array ( ) [_REQUEST] => Array ( ) ) ------------------------ test.wsf results WScript object is GLOBAL Array ( [GLOBALS] => Array *RECURSION* [_ENV] => Array ( ... ) [HTTP_ENV_VARS] => Array ( ... ) [_POST] => Array ( ) [HTTP_POST_VARS] => Array ( ) [_GET] => Array ( ) [HTTP_GET_VARS] => Array ( ) [_COOKIE] => Array ( ) [HTTP_COOKIE_VARS] => Array ( ) [_SERVER] => Array ( [REQUEST_TIME] => 1182770478 [argv] => Array ( ) [argc] => 0 ) [HTTP_SERVER_VARS] => Array ( [REQUEST_TIME] => 1182770478 [argv] => Array ( ) [argc] => 0 ) [_FILES] => Array ( ) [HTTP_POST_FILES] => Array ( ) [_REQUEST] => Array ( ) [scriptlet] => variant Object [globals] => variant Object [WScript] => variant Object [WSH] => variant Object )