1

我需要将 php 会话变量从我的 php 表单传递到 perl 脚本,反之亦然,以便表单字段可以保留它们的值。

表单.php

<?php  session_start();
 if (isset($_POST['submit'])){
    $post_arr = $_POST;

    $expire = 8*3600; 
    setcookie("Cookie_Info", serialize($post_arr), time()+$expire); 
   }

if (isset($_COOKIE['Cookie_Info'])) {
    $data = unserialize($_COOKIE['Cookie_Info']);
} else {
    $data = array(
          'from' => '',
              'area_html' => ''
    );

        }

......

<form name="sendForm" method="post" action="test.cgi" >
<tr><td> from: </td>
    <td><input type="text" name="from" value="<?php echo $data->from; ?>"/></td>
</tr>

我的问题是我怎么能在 perl 方面做到这一点

4

2 回答 2

0

答案很简单,在 perl 方面:

use CGI qw/:standard/;         
use CGI::Cookie;
%cookies = CGI::Cookie->parse($ENV{COOKIE});
于 2013-04-18T10:25:41.263 回答
-1

你已经搜索了吗?我不这么认为...

将变量从 PHP 传递到 PERL

您需要使用 exec:

<?php
$var1='high'; 
exec('C:/xampp/htdocs/WORK/hello.pl'.' '.EscapeShellArg("$var1"),$output);
echo ($output);
?>

其他链接:

http://forums.devshed.com/php-development-5/passing-arrays-from-php-to-a-perl-script-run-as-35600.html

于 2013-04-18T10:09:42.570 回答