我希望将HTML表单POST调用的结果调用到另一个PHP文件的内容中。 目标是根据HTML表单值动态生成重定向页面。
$redirectionLink = $_POST["redirectionLink"];
$redirectionFileContent =
`
<?php
header("Location:.".'$redirectionLink ');
?>
`;
$otherFileLocation= 'c:\xampp\htdocs\li\something.php';
file_put_contents($otherFileLocation,$redirectionFileContent);
运行上面的代码时,我收到以下输出:
Notice: Array to string conversion in C:\xampp\htdocs\shortlink\process.php on line 25
我不知道会有多好。也许将它存储在变量中或作为后调用写入
我愿意接受建议。
提前感谢您的帮助。
答案 0 :(得分:0)
如果您要做的只是创建一个新文件,该文件将重定向到从POST请求收到的URL,则应执行以下操作:
$longlink = $_POST["longlink"];
$redirection = <<<EOT
<?php
header('Location:{$longlink}');
?>
EOT;
file_put_contents($fileplace, $redirection);
答案 1 :(得分:-1)
这可能会解决问题
{{1}}