php & operator construct [duplicate] - php

This question already has answers here:
PHP "&" operator
(8 answers)
Reference Guide: What does this symbol mean in PHP? (PHP Syntax)
(24 answers)
Closed 10 years ago.
I got this piece of code which I'm analysing and it have this condition
if(($hint&self::HINT_WRITE && $hint&self::HINT_NOWRITE) || ($hint&self::HINT_READ && $hint&self::HINT_NOREAD))
{
some code ..
}
Any Idea what '&' in '$variable&self::CONSTANT' means?

Related

Triple equals in return php [duplicate]

This question already has answers here:
Reference Guide: What does this symbol mean in PHP? (PHP Syntax)
(24 answers)
What does "===" mean? [duplicate]
(10 answers)
Closed 3 years ago.
I saw the line below in a class method :
return $return === 1;
What's the meaning of this ? As "===" is a comparaison operator, what would be the expected behavior of using this operator directly in a return ? Return only if 1 ?
Thanks

What is the difference between in_array() and #in_array() in php? [duplicate]

This question already has answers here:
# symbol before php function [duplicate]
(3 answers)
What is the use of the # symbol in PHP?
(11 answers)
Reference Guide: What does this symbol mean in PHP? (PHP Syntax)
(24 answers)
Closed 4 years ago.
can you please help i just want to know why we use #in_array function.
$name = array("ravi", "ram", "rani", 87);
if (in_array("ravi", $name, TRUE)){
}
if (#in_array("ravi", $name, TRUE)){
}
The "#" symbol turn off the errors. It is not a good idea to use it.
PHP Error Control Operators
PHP supports one error control operator:
the at sign (#
http://php.net/manual/en/language.operators.errorcontrol.php

What is the difference between ${var} and {$var} in PHP [duplicate]

This question already has answers here:
What does ${ } mean in PHP syntax?
(4 answers)
When to wrap curly braces around a variable
(3 answers)
Closed 4 years ago.
I have seen some code in PHP use this expression ${variable}, so; what is this? and when to use it? and what is the difference between ${var} and {$var} ?

Why a function starts with # in php ? like #unpack(xxx)? [duplicate]

This question already has answers here:
What is the use of the # symbol in PHP?
(11 answers)
Closed 7 years ago.
$block_header = #unpack('Sc_size/Su_size/Lchecksum', fread($this->fp, 8));
What does this mean ?
PHP Error Control Operators.
it avoids showing the error returned by the function. more info in the link:
http://www.php.net/manual/en/language.operators.errorcontrol.php

What's "&" in front of function names? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicates:
What does it mean to start a PHP function with an ampersand?
Reference - What does this symbol mean in PHP?
What does this signature mean(&) in PHP?
What's up with the & in front of function names? What does it do?
function &fname(){
}

Categories