f.apply(null, arguments)
и смысл не изменится. А если вы спрашиваете от любопытства - то window. $href = "http://nothissite.ru";
preg_replace("/((?:^|http:\/\/|https:\/\/)(?:www\.)(?!site\.ru))/", "/page.php?href=$1", $href);
//Или т.п образом
$Post_Text = "#onehash@onedog #twohash @twodog";
$Post_Text = preg_replace("/#([^\b#@]+)/", "<a href='http://site.ru/posts&search=$1'>#$1</a>", $Post_Text);
$Post_Text = preg_replace("/@([^\b#@]+)/", "<a href='http://site.ru/$1'>@$1</a>", $Post_Text);
echo $Post_Text;
<a href='http://site.ru/posts&search=onehash'>#onehash</a><a href='http://site.ru/onedog <a href='http://site.ru/posts&search=twohash '>'>@onedog <a href='http://site.ru/posts&search=twohash '></a>#twohash </a><a href='http://site.ru/twodog'>@twodog</a>
setInterval(show_text, 3000);