
The operator ==
casts between two different types if they are different
The ===
operator performs a 'typesafe comparison'
That means that it will only return true if both operands have the same type and value.
1 === 1: true
1 == 1: true
1 === "1": false // 1 is an integer, "1" is a string
1 == "1": true // "1" gets casted to an integer, which is 1
"foo" === "foo": true // both operands are strings and have the same value
void
which means nothing.
The PHP configuration file, php.ini, is the final and most immediate way to affect PHP's functionality. The php.ini file is read each time PHP is initialized. in other words, whenever httpd
is restarted for the module version or with each script execution for the CGI version.
Consider:
Array ( [0] => Hello [1] => world [2] => It's [3] => a [4] => beautiful [5] => day)
The keys of an indexed array are 0, 1, 2 etc. (the index values) and values are "Hello", "world", "It's", "beautiful", "day".
$GLOBALS
is associative array including references to all variables which are currently defined in the global scope of the script.
To be able to pass a variable by reference, we use an ampersand in front of it, as follows:
$var1 = &$var2
PHP allows the user to modify some of its settings mentioned in php.ini using ini_set(). This function requires two string arguments. The first one is the name of the setting to be modified and the second one is the new value to be assigned to it.
Given line of code will enable the display_error setting for the script if it’s disabled.
ini_set('display_errors', '1');
We need to put the above statement, at the top of the script so that, the setting remains enabled till the end. Also, the values set via ini_set() are applicable, only to the current script. Thereafter, PHP will start using the original values from php.ini.
Upgrade to get full answer
function middleFunc(req,res,next){
req.message:'Hello'
next()
}
Upgrade to Unlock Full Access
Login & Upgrade ProTechStack account To Unlock 1000+ Expert Questions, Jobs & lift your dev career at Rs 99 for Lifetime Access
Get questions asked at top companies
Job posting alerts from top platforms like Linkedin, Naukri, Monster, Google Careers etc in one place
Ace Your Dev Career with top Interview Questions, Job Alerts & Referrals from Top Companies