fork download
  1. <?php
  2. echo "<script>mycount =";
  3. $a = array(10,'+',10, '*', 2, '+', 10);
  4. for($i = 0; $i < count($a);$i++):
  5. echo $a[$i];
  6. endfor;
  7. echo '; alert(mycount);</script>';
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
<script>mycount =10+10*2+10; alert(mycount);</script>