Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

null coalesce operator in php (laravel)

public function show($name){
       $data = [
        'twitter' => 'codewithchinekwe',
        'age' => '23',
       ];
       return view('products.index', [
          'products' => $data[$name] ?? 'product ' .$name. 'doesn't exist'
       ]);
   }
 
PREVIOUS NEXT
Tagged: #null #coalesce #operator #php
ADD COMMENT
Topic
Name
3+2 =