PHP是否具有Java的RequestDispatcher.forward等价物?

时间:2009-01-11 21:39:45

标签: php jsp http forwarding

在Java中,我可以编写一个非常基本的JSP index.jsp,如下所示:

<% request.getRequestDispatcher("/home.action").forward(request, response); %>

这样做的结果是请求index.jsp的用户(或只是假定index.jsp的包含目录是该目录的默认文档)将看到home.action没有浏览器重定向,即[forward](http://java.sun.com/javaee/5/docs/api/javax/servlet/RequestDispatcher.html#forward(javax.servlet.ServletRequest,%20javax.servlet.ServletResponse))发生在服务器端。

我可以用PHP做类似的事吗?我怀疑可以配置Apache来处理这种情况,但由于我可能无法访问相关的Apache配置,所以我会对依赖于PHP的解决方案感兴趣。

7 个答案:

答案 0 :(得分:1)

关于Request.Forward的技巧是它为你提供了一个干净的新请求。因此,您没有当前请求的残留,例如,依赖于$ _SERVER ['REQUEST_URI']的java eq的脚本没有问题。

您可以直接使用CURL类并编写一个简单的函数来执行此操作:

<?php 
/**
 * CURLHandler handles simple HTTP GETs and POSTs via Curl 
 * 
 * @author SchizoDuckie
 * @version 1.0
 * @access public
 */
class CURLHandler
{

    /**
     * CURLHandler::Get()
     * 
     * Executes a standard GET request via Curl.
     * Static function, so that you can use: CurlHandler::Get('http://www.google.com');
     * 
     * @param string $url url to get
     * @return string HTML output
     */
    public static function Get($url)
    {
       return self::doRequest('GET', $url);
    }

    /**
     * CURLHandler::Post()
     * 
     * Executes a standard POST request via Curl.
     * Static function, so you can use CurlHandler::Post('http://www.google.com', array('q'=>'belfabriek'));
     * If you want to send a File via post (to e.g. PHP's $_FILES), prefix the value of an item with an @ ! 
     * @param string $url url to post data to
     * @param Array $vars Array with key=>value pairs to post.
     * @return string HTML output
     */
    public static function Post($url, $vars, $auth = false) 
    {
       return self::doRequest('POST', $url, $vars, $auth);
    }

    /**
     * CURLHandler::doRequest()
     * This is what actually does the request
     * <pre>
     * - Create Curl handle with curl_init
     * - Set options like CURLOPT_URL, CURLOPT_RETURNTRANSFER and CURLOPT_HEADER
     * - Set eventual optional options (like CURLOPT_POST and CURLOPT_POSTFIELDS)
     * - Call curl_exec on the interface
     * - Close the connection
     * - Return the result or throw an exception.
     * </pre>
     * @param mixed $method Request Method (Get/ Post)
     * @param mixed $url URI to get or post to
     * @param mixed $vars Array of variables (only mandatory in POST requests)
     * @return string HTML output
     */
    public static function doRequest($method, $url, $vars=array(), $auth = false)
    {
        $curlInterface = curl_init();

        curl_setopt_array ($curlInterface, array( 
            CURLOPT_URL => $url,
            CURLOPT_CONNECTTIMEOUT => 2,
            CURLOPT_RETURNTRANSFER => 1,
            CURLOPT_FOLLOWLOCATION =>1,
            CURLOPT_HEADER => 0));

        if (strtoupper($method) == 'POST')
        {
            curl_setopt_array($curlInterface, array(
                CURLOPT_POST => 1,
                CURLOPT_POSTFIELDS => http_build_query($vars))
            );  
        }
        if($auth !== false)
        {
              curl_setopt($curlInterface, CURLOPT_USERPWD, $auth['username'] . ":" . $auth['password']);
        }
        $result = curl_exec ($curlInterface);
        curl_close ($curlInterface);

        if($result === NULL)
        {
            throw new Exception('Curl Request Error: '.curl_errno($curlInterface) . " - " . curl_error($curlInterface));
        }
        else
        {
            return($result);
        }
    }

}

只需将其转储到class.CURLHandler.php中即可:

当然,使用$ _REQUEST并不是很安全(你应该检查$ _SERVER ['REQUEST_METHOD'])但是你明白了。

<?php
include('class.CURLHandler.php');
die CURLHandler::doRequest($_SERVER['REQUEST_METHOD'], 'http://server/myaction', $_REQUEST);
?>

当然,CURL没有安装到处但是我们已经native PHP curl emulators for that.

此外,这使您比Request.Forward更具灵活性,因为您还可以捕获并后处理输出。

答案 1 :(得分:1)

我认为最接近的类似方法之一就是在运行php作为apache模块时使用virtual()函数。

  

virtual()是特定于Apache的函数,类似于    在   mod_include负责。它执行Apache   子请求。

答案 2 :(得分:1)

如果您使用像Zend Framework一样的MVC,您可以更改控制器操作,甚至可以在控制器操作之间跳转。该方法是_ described here

答案 3 :(得分:1)

试试这个。

function forward($page, $vars = null){
    ob_clean();
    include($page);
    exit;
}

在包含的页面上,$vars变量将作为java请求属性

答案 4 :(得分:0)

如果您担心CURL可用性,那么您可以使用file_get_contents()和流。设置如下功能:

function forward($location, $vars = array()) 
{
    $file ='http://'.$_SERVER['HTTP_HOST']
    .substr($_SERVER['REQUEST_URI'],0,strrpos($_SERVER['REQUEST_URI'], '/')+1)
    .$location;

    if(!empty($vars))
    {
         $file .="?".http_build_query($vars);
    }

    $response = file_get_contents($file);

    echo $response;
}

这只是设置GET,但您也可以使用file_get_contents()发帖。

答案 5 :(得分:0)

概念重定向和转发就像在Java中一样,也可以在PHP中实现。

重定向:: header("Location: redirect.php"); - (地址栏中的网址更改)

转发:: include forward.php ; - (地址栏处的网址不变)

它可以用这个&amp; amp;其他编程逻辑

答案 6 :(得分:-3)

您可以使用:

header ("Location: /path/");
exit;

如果之前发送了一些HTML输出,则需要退出,header()将无效,因此您必须在任何输出之前向浏览器发送新标头。