Skip to content

Instantly share code, notes, and snippets.

@PakCu
Created July 4, 2020 08:00
Show Gist options
  • Select an option

  • Save PakCu/e2661f72365b3dc4fd3682ce399591c2 to your computer and use it in GitHub Desktop.

Select an option

Save PakCu/e2661f72365b3dc4fd3682ce399591c2 to your computer and use it in GitHub Desktop.
PHP String - ${$var}
<?php
$harga = 100000;
$x = "harga";
echo "Harga kereta ialah ${$x}"; //Harga kereta ialah 100000
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment