source: branches/dev/html/test/naka/recv.php @ 8

Revision 8, 827 bytes checked in by root, 17 years ago (diff)

new import

Line 
1<?php
2require_once("../../require.php");
3require_once(DATA_PATH . "module/Request.php");
4
5$strmask = "/home/web/test.ec-cube.net/cgi-bin/ShopCGI/common/strmask/FreeBSD_4.4/strmask.exe";
6$cmd = $strmask . " -d " . $_GET['SendData'];
7
8$tmpResult = popen($cmd, "r");
9
10// ·ë²Ì¼èÆÀ
11while( ! FEOF ( $tmpResult ) ) {
12    $result .= FGETS($tmpResult);
13}
14pclose($tmpResult);             //  ¥Ñ¥¤¥×¤òÊĤ¸¤ë
15
16$arrRet = lfGetPostArray($result);
17gfDebugLog($arrRet);
18
19//---------------------------------------------------------------------------------------------------------------------------------
20function lfGetPostArray($text) {
21    if($text != "") {
22        $text = ereg_replace("[\n\r]", "", $text);
23        $arrTemp = split("&", $text);
24        foreach($arrTemp as $ret) {
25            list($key, $val) = split("=", $ret);
26            $arrRet[$key] = $val;
27        }
28    }
29    return $arrRet;
30}
31?>
Note: See TracBrowser for help on using the repository browser.