Hello, where can I read about memory in PHP. I am not familiar with C, but I am interested in the following:
$pizza = "ΠΊΡΡΠΎΠΊ1 ΠΊΡΡΠΎΠΊ2 ΠΊΡΡΠΎΠΊ3 ΠΊΡΡΠΎΠΊ4 ΠΊΡΡΠΎΠΊ5 ΠΊΡΡΠΎΠΊ6"; explode(" ", $pizza);
I wonder how the memory is allocated, where the array is stored, which is returned by explode()
(without a variable), can it be accessed without a variable. I want to know more details.
return
orecho
, for example, without problems. But to save without a variable - nev ...))) - intro94explode(" ", $pizza);
is an array, the memory area occupied by it will immediately be labeled for garbage collection, as it works in php in detail, I do not know, read the php source code they are in C (have to get acquainted)