替换PHP中的URL

时间:2018-07-02 01:26:17

标签: php

$sub = (!isset($_GET["f"])) ? "1" : htmlspecialchars($_GET["f"]);
$file = (!isset($_GET["d"])) ? "f" : htmlspecialchars($_GET["d"]);
$grab = GetStringBetween(getURL(.$sub"grabdomain.info/embed/".$url ".php"),"start", '"stop');

正在执行我的任务的代码是为了做到这一点,如果我这样做 mydomain.com/phpfilename.php?d=auth&f=1 它使它成为auth.grabdomain.info/embed/1.php

所以换句话说 我想从Subdomain.domain.com/filename.php获取字符串,但是要更改子域和文件名,因此我不想为每个域制作一个php,而是希望能够在URL中使用?f = value&d = value

我知道会是

$url = (!isset($_GET["d"])) ? "filehere.php" : htmlspecialchars($_GET["d"]);
$grab = GetStringBetween(getURL("www.domain.info/embed/".$url),"start", 'stop');

ive测试了它,但是添加2成为我如何设置$ grab行的问题

1 个答案:

答案 0 :(得分:1)

如果我理解您非常难以理解的问题,则您需要这样的内容。

/ myphpscript?subdomain = value&filename = value:

$subdomain = $_GET["subdomain"];
$filename = $_GET["filename"];
$url = 'http://'.$subdomain.'.domain.com/'.$filename.'.php';
$myString = file_get_contents($url);