×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - What is a variable variable in PHP?


PHP - 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

 
<< Go back