summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/htdocs/php/eval3.php
blob: c8041fd2c516b150ddbe0cf426d7784bb2c17019 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

error_reporting(0);

$message = "echo \"hey\n\";";

for ($i=0; $i<10; $i++) {
  eval($message);
  echo $i."\n";
}