Search
 
SCRIPT & CODE EXAMPLE
 

PHP

-> 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();
Comment

$$ in php

$x = "abc";  
$$x = 200;  
echo $x."<br/>";  
echo $$x."<br/>";  
echo $abc; 

// output:
abc
200
200
Comment

:: in php

/*
The Scope Resolution Operator (also called Paamayim Nekudotayim) 
or in simpler terms, the double colon, is a token that allows 
access to static, constant, and overridden properties or methods 
of a class.
*/
class MyClass {
    const CONST_VALUE = 'A constant value';
}

$classname = 'MyClass';
echo $classname::CONST_VALUE;

echo MyClass::CONST_VALUE;
Comment

-> 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();
Comment

: in PHP

/*
This is an easy way to execute conditional html / 
javascript / css / other language code with 
php if else:

No need for curly braces {}
*/
<?php if (condition): ?>

// html / javascript / css / other language code to run if condition is true

<?php else: ?>

// html / javascript / css / other language code to run if condition is false

<?php endif ?>
Comment

? in php

/* 
in php, ? is the 'Ternary Operator'.

The expression (expr1) ? (expr2) : (expr3) evaluates 
to expr2 if expr1 evaluates to true, and expr3 if 
expr1 evaluates to false.

It is possible to leave out the middle part of the 
ternary operator. Expression expr1 ?: expr3 evaluates 
to the result of expr1 if expr1 evaluates to true, 
and expr3 otherwise. expr1 is only evaluated once in 
this case.
*/

<?php
// Example usage for: Ternary Operator
$action = (empty($_POST['action'])) ? 'default' : $_POST['action'];

// The above is identical to this if/else statement
if (empty($_POST['action'])) {
    $action = 'default';
} else {
    $action = $_POST['action'];
}
?>
Comment

PREVIOUS NEXT
Code Example
Php :: optimize wordpress query 
Php :: laravel redirect problem 
Php :: merge pdf php fpdf 
Php :: where is cache file in laravel 
Php :: php mysql 
Php :: php date time formatting 
Php :: php qrcode 
Php :: extract in php useful 
Php :: notification in laravel 8 
Php :: laravel send data with a redirect 
Php :: password_verify 
Php :: cache for php website 
Php :: mezzio quick start templating with laminas view 
Php :: php artisan migrate stuck 
Php :: include vendor/autoload.php 
Php :: PHP metaphone — Calculate the metaphone key of a string 
Php :: php normalize whitespace characters 
Php :: Wordpress even odd post count 
Php :: Add a watermark to a new PDF document 
Php :: through error on warning php 
Php :: check not empty in laravel blade 
Php :: get git branch with php 
Php :: php regex markdown link 
Php :: call stored procedure in laravel 
Php :: filter elementor 
Php :: laravel gigapay update invoice 
Php :: php get cookie by name preg_match 
Php :: how to put external file in laravel listener class 
Php :: blocking youtube adds in php 
Php :: selecting values from database 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =