Adding debian version 2.4.63-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
7263481e48
commit
f56986e2d9
1490 changed files with 80785 additions and 0 deletions
22
debian/perl-framework/t/htdocs/php/regression.php
vendored
Normal file
22
debian/perl-framework/t/htdocs/php/regression.php
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
PHP Regression Test
|
||||
|
||||
<?php
|
||||
|
||||
include("regression1.inc");
|
||||
|
||||
$wedding_timestamp = mktime(20,0,0,8,31,1997);
|
||||
$time_left=$wedding_timestamp-time();
|
||||
|
||||
if ($time_left>0) {
|
||||
$days = $time_left/(24*3600);
|
||||
$time_left -= $days*24*3600;
|
||||
$hours = $time_left/3600;
|
||||
$time_left -= $hours*3600;
|
||||
$minutes = $time_left/60;
|
||||
echo "Limor Ullmann is getting married on ".($wedding_date=date("l, F dS, Y",$wedding_timestamp)).",\nwhich is $days days, $hours hours and $minutes minutes from now.\n";
|
||||
echo "Her hashed wedding date is $wedding_date.\n";
|
||||
} else {
|
||||
echo "Limor Ullmann is now Limor Baruch :I\n";
|
||||
}
|
||||
?>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue