Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently my code looks like that:

switch ($_POST['operation']) {
    case 'create':
        $db_manager->create();
        break;
    case 'retrieve':
        $db_manager->retrieve();
        break;
...
}

What I want to do is, to check if method called $_POST['operation'] exists: if yes then call it, else echo "error" Is it possible? How can I do this?

share|improve this question

4 Answers

up vote 9 down vote accepted

You can use method_exists:

if (method_exists($db_manager, $_POST['operation'])){
  $db_manager->{$_POST['operation']}();
} else {
  echo 'error';
}

Though I strongly advise you don't go about programming this way...

share|improve this answer
Why not to go this way? – heron Apr 23 '12 at 20:36
@epic_syntax: Because I could, with wget/cURL, spoof the POST variable and pry around for methods you don't necessarily want exposed. Also, you NEVER trust user input directly, you always want to sanitize it. basically, if you're using $_POST[...] anywhere else but the top of your file embedded in a check for safe-ness, you're doing it wrong and asking for trouble. – Brad Christie Apr 23 '12 at 20:43
And I almost though, you'd recomend not to use PHP at all :) – iblue Apr 23 '12 at 20:44
@epic_syntax: the easy way is to have whitelist of methods allowed to run – zerkms Apr 23 '12 at 20:45
@iblue: you just wanted to share that link and could find better place, didn't you? – zerkms Apr 23 '12 at 20:46
show 4 more comments

You can use is_callable() or method_exists().

The difference between them is that the latter wouldn't work for the case, if __call() handles the method call.

share|improve this answer

Use method_exists()

method_exists($obj, $method_name);
share|improve this answer

You can use method_exists(). But this is a really bad idea

If $_POST['operation'] is set to some magic function names (like __set()), your code will still explode. Better use an array of allowed function names.

share|improve this answer
I think, You mean something like this. $operations=array("retrieve", "create"); if (isset($_POST['operation']) && in_array($_POST['operation'], $operations)) { $db_manager->{$_POST['operation']}(); } Can I collect all available methods into an array automatically or only manually? – heron Apr 23 '12 at 20:41
Letting users call arbitrary methods in an object is generally a bad idea (and its slow as hell). Make your own list, or even better use the switch statement from your question. – iblue Apr 23 '12 at 20:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.