Skip to content

Instantly share code, notes, and snippets.

@dsturm
Created February 17, 2017 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsturm/2593244cd889618ef304ea7e674344b3 to your computer and use it in GitHub Desktop.
Save dsturm/2593244cd889618ef304ea7e674344b3 to your computer and use it in GitHub Desktop.
Fix vc
$param_value = isset( $$param['param_name'] ) ? $$param['param_name'] : '';
$param_value = isset(${$param['param_name']}) ? ${$param['param_name']} : '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment