Is using PHP magic function __call() a good style? [closed]

I recently came across the use of the PHP magic function and found it quite handy. But after thinking about it for a while, I wonder if using the function is good. I just noticed that debugging is made much more difficult. Also, autocompletion by the IDE is not given.

Questions

  1. Good style
  2. Is there a way around the two disadvantages mentioned above?