我想创建一个php表单,它将URL作为用户的输入,然后向其添加一个文本块。 示例:如果用户在表单中输入“http://solmri.com/27”,则php脚本会向其添加“?geek”。 所以,用户获得的结果是“http://solmri.com/27?geek”..... 请建议一个方法来做.... ....
答案 0 :(得分:1)
你是在谈论php中的字符串连接吗?
<?php
$a = "URL";
$b = $a . "geek"; // now $b contains "URLgeek"
$a = "URL";
$a .= "?geek"; // now $a contains "URL?geek"
?>
http://php.net/manual/en/language.operators.string.php
作为附注,如果您打算使用url传递变量,则需要执行类似
的操作URL?geek=true