-> in php
// Create a new instance of MyObject into $obj
$obj = new MyObject();
// Set a property in the $obj object called thisProperty
$obj->thisProperty = 'Fred';
// Call a method of the $obj object named getProperty
$obj->getProperty();
-> in php
// Create a new instance of MyObject into $obj
$obj = new MyObject();
// Set a property in the $obj object called thisProperty
$obj->thisProperty = 'Fred';
// Call a method of the $obj object named getProperty
$obj->getProperty();
$$ in php
$x = "abc";
$$x = 200;
echo $x."<br/>";
echo $$x."<br/>";
echo $abc;
// output:
abc
200
200
operators in php
if (condition)
code to be executed if condition is true;
else
code to be executed if condition is false;
?? ' ' in php
// Null Coalesce Operator - $statement ?? ''
$categoryName = $category->name ?? 'Not Available';
// The above Statement is identical to this if/else statement
if (isset($category->name)) {
$categoryName = $category->name;
} else {
$categoryName = 'Not Available';
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us