Sat, 4 May 2024


What is a variable variable in PHP?

By: Anton, NetArt Media
Sat, 4 December 2021
What is a variable variable in PHP?

A variable variable looks like : $$variable

If for example $variable="netart"; and $anton="media";
then $$variable will contain the value "media"

Example of calling variable functions

<?php
$variable="netart";

${$variable.'_media'}();
?>
will call the function netart_media()


Category: PHP Examples
Share this post:



See All Scripts






Subscribe for our newsletter

Receive the latest blog posts direct in your mailbox