PHP Classes

File: phpcf-src/test/original/ternary.php

Recommend this page to a friend!
  Classes of Alex Krash   PHP Code formatter   phpcf-src/test/original/ternary.php   Download  
File: phpcf-src/test/original/ternary.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP Code formatter
Reformat PHP code according to standard options
Author: By
Last change:
Date: 9 years ago
Size: 178 bytes
 

Contents

Class file image Download
<?php
$something
= $User ? ($em['id'] == $User->getField('manager_id') ? 'selected' : '') : '';

$a = $b ?: $c;
// leave compatibility with old behaviour as well
$a = $b ? : $c;