docs
[mirrors/Programs.git] / perl / test.php
CommitLineData
21c4e167
H
1#!/usr/bin/php
2<?php
3echo("Ahoj svetee!\n");
4
5$array = array("Neo", "Trinity", "Morpheus");
6foreach($array as $_) echo( md5($_).": $_\n");
7
8for($i=1;$i<100000;$i++) { print(md5($i*rand(0,9))."\r"); }
9
10echo "\n";
11
This page took 0.197447 seconds and 4 git commands to generate.