Jump to content

Executing a variable?


christofurr

Recommended Posts

Another, probably simpler example is say you have a page that calls certain functions based on perams passed via $_GET. Theres two ways of doing it. The long way...

 

<?php

  function fun1 () {
    echo "this is fun1()";
  }

  function fun2 () {
    echo "this is fun2()";
  }

  function fun3 () {
    echo "this is fun3()";
  }

  switch ($_GET['action'])) {
    case 'fun1':
      fun1();
      break;
    case 'fun2':
      fun2();
      break;
    case 'fun3':
      fun3();
      break;
  }

?>

 

Or... the shorter way....

 

<?php

  function fun1 () {
    echo "this is fun1()";
  }

  function fun2 () {
    echo "this is fun2()";
  }

  function fun3 () {
    echo "this is fun3()";
  }

  $_GET['action']();

?>

 

Of course these (both examples) need some error handling, and sure, it doesn't look much with only three actions, but, In my previous example.... A base Linux distro with nothing much installed except what is needed to get to a prompt is some 60+ packages.

 

Sometimes, its better to let the language do the work.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.