1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

シーザーの犬ぞりゲーム.php

Last updated at Posted at 2019-10-31

#オレはやるぜ
images.jpg

いわゆる「ズンドコキヨシプログラム」です。
ズンドコのままでも別にいいんですが、そこまで熱狂的なきよしファンでもないし
好きな言葉で遊んだ方が面白いよなーと思って
ちょうど読んでた「動物のお医者さん」からシーザーに頑張ってもらいました。

「オレは」「やるぜ」をランダムに出力して「オレはやるぜオレはやるぜ」になったら
「オレはやったぜ!」と表示して終了します。

yaruze.php
<?php
$i='';
while($i.=['オレは','やるぜ'][mt_rand(0,1)])
    if(strstr($i,'オレはやるぜオレはやるぜ'))
        die($i.'オレはやったぜ!');

die()を覚えたので使いたかった。

#最初作ってた簡単なやつ
直前に作ってたサイコロ転がしの改変。
「オレはやるぜ」になったら終わり。

yaruze.php
<?php
$yaruze = ['オレは','やるぜ','イヤだ','ケンカ','するんだ'];
 shuffle($yaruze);
foreach ($yaruze as $value) {
    echo "オレは $value";
    if ($value === 'やるぜ') {
        echo "オレはやったぜ!";
        break;
    }
}

1F7D655C-582A-4D38-B712-A166953FCC77.jpeg

preg_matchを使って一致したらオレはやったぜをechoして終わりにしたかったんだけど
条件一致しても表示されなかったり、延々オレはやったぜを返し続けるなどしたので諦めた。
今度人に聞いて書き直す。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?