fork download
  1. <?php
  2. $Strings = explode("\n", "1\n2\n3"); // Для проверки
  3. //$Strings = explode("\n", file_get_contents('strings.txt'));
  4. $String = $Strings[rand(0, count($Strings) - 1)];
  5. ?>
  6. <meta property="og:title" content="<?= $String ?>">
  7. <div id="content"><?= $String ?></div>
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
<meta property="og:title" content="2">
<div id="content">2</div>