The main answer: on the server you can display only the information that the browser provided to you. Therefore, if the browser did not send the "HTTP_X_CLUSTER_CLIENT_IP" information, the server and, of course, php will not be able to output it.
In addition, the documentation in $ _SERVER does not contain anything like "HTTP_FORWARDED".
Bonus answer: Due to the fact that the browser does not send this information by default, you should receive them via JS and send them using on, like the tracking tools (look at piwik, this is open source code) or grap them from other information, which you get, for example $ _SERVER ['HTTP_USER_AGENT'] (see comment)
source share