如何使用其他域名的php个文件?
how to use php files from other domain name?
使用两个具有不同 Web 域的门户(例如:www.buyer.com、www.seller.com),我在 [中有一个共同的 php 文件=29=] 我需要包含那个文件 www seller.com 这怎么可能.
文件登录
www.buyer.com/main/login.php
有代码
if(user_flag == "seller")
{
include("www.seller.com/system/login_cfm.php");
}
else
{
include("../system/login_cfm.php");
}
但它不起作用怎么办...
请检查 php.ini 以下选项。这应该是真的。
allow_url_include 布尔值
此选项允许使用具有以下功能的 URL-aware fopen 包装器:include、include_once、require、require_once.
检查来源 link:http://php.net/manual/en/filesystem.configuration.php#ini.allow-url-include
使用两个具有不同 Web 域的门户(例如:www.buyer.com、www.seller.com),我在 [中有一个共同的 php 文件=29=] 我需要包含那个文件 www seller.com 这怎么可能.
文件登录
www.buyer.com/main/login.php
有代码
if(user_flag == "seller")
{
include("www.seller.com/system/login_cfm.php");
}
else
{
include("../system/login_cfm.php");
}
但它不起作用怎么办...
请检查 php.ini 以下选项。这应该是真的。 allow_url_include 布尔值 此选项允许使用具有以下功能的 URL-aware fopen 包装器:include、include_once、require、require_once.
检查来源 link:http://php.net/manual/en/filesystem.configuration.php#ini.allow-url-include