Since PHP derives from C++...
Stop. This line of thinking will get you nothing but pain and suffering. Perl, LPC, Lua, Pike, Ada 95, Java, PHP, D, C99, C#, and Falcon are all derived from C++ as well, for some definition of "derived", and I can guarantee you they act nothing like C++ and are certainly not used like C++ either. The similarities are superficial in nature, and their semantics are totally different.
In the case you provided above, it's more similar to languages like Javascript in the sense that you can resolve and dereference a variable name given only a string. In C++ knowing just the name of the variable doesn't allow you to dereference the variable. What you need is its memory address (hence the & operator). That's the key difference.
I think the most salient point of misunderstanding here is this part of your question:
Just like pointers, when you define $a = 'var' and $var = 'test' and
then you do $$a you are using the R-value of $a to point to $var which
is kinda what happens with C++ pointers.
This isn't explanation doesn't capture the entire picture with regards to pointers. I assume you're talking about things like these:
PHP:
$var = 'test'
$a = 'var'
//$$a == 'test'
C++:
std::string var = "test";
std::string* a = &var;
// *a == "test";
The big difference between the two is that C++'s a contains a memory address for the var variable, not a string containing the name of the variable var.
It's more like reflection than anything else, which C++ certainly does not have as standard, and thus cannot just simply dereference a variable given only a string name.
From the PHP documentation for variable variables:
Sometimes it is convenient to be able to have variable variable names.
That is, a variable name which can be set and used dynamically. [emphasis mine]
If C++ had that kind of functionality, it would be more like this:
std::string Bar = "a";
std::string Foo = "Bar";
std::string World = "Foo";
std::string Hello = "World";
std::string a = "Hello";
// Hypothetical function dyn_deref_str that gets the string value
// held by a variable given only its name.
a; //Returns "Hello"
dyn_deref_str(a); //Returns "World"
dyn_deref_str(dyn_deref_str(a)); //Returns "Foo"
dyn_deref_str(dyn_deref_str(dyn_deref_str(a))); //Returns "Bar"
dyn_deref_str(dyn_deref_str(dyn_deref_str(dyn_deref_str(a)))); //Returns "a"
This is very different from simple pointer dereferencing, as pointers do not hold strings, they hold memory addresses. Even though you shouldn't be using pointers in your code anyway except in very specific circumstances.