[Solved] Why this result in PHP?
[ad_1] First of all, echo is not a function, it is a language construct and it does not actually “return” anything. echo is for outputting strings. The reason it outputs (not returns) 1 instead of true is because true is not a string, it is a boolean value and therefore when it is typecast to … Read more