「Wikipokpok:サンドボックス」の版間の差分

提供: wikipokpok
移動先: 案内検索
11行目: 11行目:
 
</php>
 
</php>
  
[[おおいしゅうどう]]
+
<php>
 +
srand((double)microtime() * 1000000);
 +
$f_contents = file("kotoba.txt");
 +
$line = $f_contents[array_rand($f_contents)];
 +
print ("<font color=red>(今日の言葉)</font>…");
 +
print $line;
 +
print ("<A href=http://wageiidiom.cocolog-nifty.com/ target=_blank>>松井高志編集「話芸きまり文句辞典」</A>");
 +
</php>

2007年9月16日 (日) 17:11時点における版

初めての方は自由に試してみてください。


<php> $numbers = range(1, 20); srand((float)microtime() * 1000000); shuffle($numbers); foreach ($numbers as $number) {

   echo "$number, ";

} </php>

<php> srand((double)microtime() * 1000000); $f_contents = file("kotoba.txt"); $line = $f_contents[array_rand($f_contents)]; print ("(今日の言葉)…"); print $line; print ("<A href=http://wageiidiom.cocolog-nifty.com/ target=_blank>>松井高志編集「話芸きまり文句辞典」</A>"); </php>