[ create a new paste ] login | about

Link: http://codepad.org/glDTpmCA    [ raw code | output | fork ]

nel - PHP, pasted on Jun 13:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

// Ternary operator

$a = 52;

unset($a); // not actually needd

$message = isset($a) ? 'Yes, value is: '.$a.'' : 'No, isnt set';

echo $message


?>


Output:
1
No, isnt set


Create a new paste based on this one


Comments: