0

我正在使用 php 来抓取和回显 curPageURL

<?php echo curPageURL(); ?>

这给了我类似的东西:http: //mywebsite.com/folder/

这很棒,但我还想添加另一个 href ,重定向到: http: //mywebsite.com/folder/thankyou/

但我想将 /thankyou/ 附加到 curPageURL

就像:curPageURL/thankyou/

那有意义吗 ?

它用于 fb feed api,并希望使用我的代码添加一个 redirect_uri(我一切正常),而不是 /thankyou/ 位......</p>

只是想知道我是否可以将目录附加到 CurPageURL 的末尾

(我真的不想使用显式网址)

斯特

4

1 回答 1

0

我想我修好了(只是没想到)

$thisurl = curPageURL();
$thanks = "thanks/";
$thaturl = $thisurl . $thanks;
于 2012-12-27T03:10:36.637 回答