Edit report at https://bugs.php.net/bug.php?id=63815&edit=1

 ID:                 63815
 Updated by:         paj...@php.net
 Reported by:        php at lool dot fr
 Summary:            please provide a shortcut language syntax
-Status:             Open
+Status:             Not a bug
 Type:               Feature/Change Request
 Package:            *General Issues
 Operating System:   all
 PHP Version:        Irrelevant
 Block user comment: N
 Private report:     N

 New Comment:

Use the ?: operator:

$v = $_POST['blabla'] ?: 'init_value';


Previous Comments:
------------------------------------------------------------------------
[2012-12-20 14:42:04] php at lool dot fr

Description:
------------
it is both long to write and difficult to read to have many lines like this in 
the source code:

$value  = isset($_POST['blabla']) ? $_POST['blabla'] : 'init_value';

it would be easier to have something like:

$value = isnotset($var,'init_value');




------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=63815&edit=1

Reply via email to