/test/subjects/parsing/isset.php
http://phc.googlecode.com/ · PHP · 21 lines · 16 code · 5 blank · 0 comment · 3 complexity · 8d0952d8d133bf4cbf6ab62fb45d9602 MD5 · raw file
- <?php
- $x = 10;
- $y = 20;
- if(isset($x))
- {
- echo "x is set\n";
- }
-
- if(isset($x, $y))
- {
- echo "x, y set.\n";
- }
-
- if(isset($z))
- {
- echo "z is set";
- }
-
- ?>