Hello World Program in C Get link Facebook X Pinterest Email Other Apps February 16, 2019 #include <stdio.h> int main() { printf("Hello World!"); return 0; } Get link Facebook X Pinterest Email Other Apps Comments
Echoing a function that echoes and returns values in PHP March 17, 2019 <?php function print_name() { echo 'Name'; return 'World'; } echo 'Hello'.print_name(); /* Output: Name Hello World */ ?> Read more
What "e" means in PHP?? July 15, 2019 <?php echo 2e0 . '<br/>'; echo 2e1 . '<br/>'; echo 2e2 . '<br/>'; echo 2e3 . '<br/>'; /* outputs: 2 20 200 2000 */ ?> Read more
Timestamps in PHP March 09, 2019 <?php echo date('h:i:s a', time() + 5 * 3600).'<br/>'; // added 5 hours to current time echo date('h:i:s a', strtotime('5 hours')).'<br/>'; // added 5 hours to current time $timestamp = mktime(0, 40, 30, 2, 11, 95); // made own time echo 'Time: '.date('h:i:sa', $timestamp).'<br/>'; // Time: 12:40:30am echo 'Date: '.date('d/m/Y', $timestamp).'<br/>'; // Date: 11/02/1995 $timestamp = mktime(12, 40, 30, 2, 11, 95); echo 'Time: '.date('h:i:sa', $timestamp).'<br/>'; // Time: 12:40:30pm $timestamp = mktime(13, 40, 30, 2, 11, 95); echo 'Time: '.date('h:i:sa', $timestamp).'<br/>'; // Time: 01:40:30pm ?> Read more
Comments
Post a Comment