HelloWorld/HelloWorld.php

30 lines
492 B
PHP
Raw Permalink Normal View History

2019-04-15 15:58:35 -05:00
<?php
# File: HelloWorld.php
2023-10-03 12:43:34 -05:00
#
# Description: This file exemplifies printing 'Hello, World!' in PHP.
#
# Package: AniNIX/HelloWorld
2019-04-15 15:58:35 -05:00
# Copyright: WTFPL
2023-10-03 12:43:34 -05:00
#
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
2019-04-15 15:58:35 -05:00
### String to print
2023-10-03 12:43:34 -05:00
$_helloWorld="Hello, World!";
2019-04-15 15:58:35 -05:00
### <summary>
2023-10-03 12:43:34 -05:00
### Prints 'Hello, World!'
2019-04-15 15:58:35 -05:00
### </summary>
2023-10-03 12:43:34 -05:00
function PrintHelloWorld() {
global $_helloWorld;
echo $_helloWorld."\n";
2019-04-15 15:58:35 -05:00
}
### MAIN
if ( basename(__FILE__) == "HelloWorld.php") {
PrintHelloWorld();
}
?>