Answers for "shorthand php"

PHP
3

php ternary

$result = $condition ? 'foo' : 'bar';
Posted by: Guest on September-02-2020
3

shorthand if php

$is_admin = ($user['permissions'] == 'admin') ? true : false;
Posted by: Guest on May-15-2020

Browse Popular Code Answers by Language