Hey.
- There are many built-in functions in PHP. I do not understand WHERE they are stored. For example, there is a function
strlen, to which a string is given, and it returns its length as an integer number.
For example, I write $str="qwe";echo(strlen($str)); . Inside WHAT (array, object ...) is the strlen function stored? For example, $str is stored inside $GLOBALS array and $str="qwe"; script $str="qwe"; can be rewritten as $GLOBALS["$str"]="qwe";
- Where are embedded constants stored? For example,
E_ALL.
dll/so)? - user207618