Skip to content

Instantly share code, notes, and snippets.

@rasoulvatanparast
Created June 28, 2019 14:38
Show Gist options
  • Save rasoulvatanparast/a6f5617cca9f36c8176f1794c34a326f to your computer and use it in GitHub Desktop.
Save rasoulvatanparast/a6f5617cca9f36c8176f1794c34a326f to your computer and use it in GitHub Desktop.
<?php
function test(){
$x = 10;
echo '<p>' . $x . "</p>\n";
}
function test2(){
$x = 5;
echo '<p>' . $x . "</p>\n";
}
function test3(){
$x = 7;
echo '<p>' . $x . "</p>\n";
}
test();
test2();
test3();
/*
OUTPUT
10
5
7
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment