我在这里发现了一些用于旋转的代码。
尝试添加 if / else 。但是无法按照下面的描述使其工作。
我想做的是;根据$ dom的值,更改文本的某些部分。在这个例子;如果点击“ dom = com ”链接,则文字应为“这是域 .com ?”如果不是那么“这是域 .us ?” 我想这样做的原因是; 我打算将这段代码用于一些停放的域名,因此文本的某些部分会有所不同。
<h1><a href="/test.php?dom=com">com</a> | <a href="/test.php?dom=us">us</a></h1>
<?
$dom = $_GET['dom'];
function spin($var){
$words = explode("{",$var);
foreach ($words as $word)
{
$words = explode("}",$word);
foreach ($words as $word)
{
$words = explode("|",$word);
if ($dom = "com"){$word = $words[0];}
else {$word = $words[1];}
echo $word." ";
}
}
}
$text = "<font size=\"6\">is this the domain {<b>.com</b> |<b>.us</b> } ?, so you are from {anywhere|usa} ?</font><br />";
spin($text);
?>
答案 0 :(得分:0)
printf("<font size=\"6\">is this the domain <b>%s</b> ?</font><br />",$_GET['dom']);
答案 1 :(得分:0)
谁知道这个功能是什么......
<?php
$dom = $_GET["dom"];
echo "Is this the domain.".$dom."?";
?>