Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created February 13, 2014 10:51
Show Gist options
  • Save tanrax/8973112 to your computer and use it in GitHub Desktop.
Save tanrax/8973112 to your computer and use it in GitHub Desktop.
PHP: Convertir valor en variable (texto en variable)
<?php
$sHola = 'texto';
$sVariable = 'sHola';
echo $$sVariable;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment