Title: [Plugin: Safe Function Call] Does it use &#039;echo&#039; or &#039;_e&#039;?
Last modified: August 20, 2016

---

# [Plugin: Safe Function Call] Does it use 'echo' or '_e'?

 *  Resolved [Clifford Paulick](https://wordpress.org/support/users/cliffpaulick/)
 * (@cliffpaulick)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-safe-function-call-does-it-use-echo-or-_e/)
 * Does it use ‘echo’ or ‘_e’?
    P.S. How much more overhead does this add compared
   to doing the condition checks myself, say 25 times (i.e. 25 different conditionals,
   possibly more actual functions)?
 * Thank you.
 * [http://wordpress.org/extend/plugins/safe-function-call/](http://wordpress.org/extend/plugins/safe-function-call/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Scott Reilly](https://wordpress.org/support/users/coffee2code/)
 * (@coffee2code)
 * WordPress & Plugin Developer
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-safe-function-call-does-it-use-echo-or-_e/#post-2716469)
 * It uses `echo`. `_e()` is only really useful if it is utilized in conjunction
   with a textdomain, which can’t be parameterized.
 * It technically adds a slight bit more overhead. It essentially does the condition
   checks you’d do, but in order to accommodate passing along arbitrary arguments(
   making it flexible), it also uses `func_get_args()`. The extra overhead is quite
   minuscule and shouldn’t be noticeable. Even if being done 25+ times in a page.
 * With the plugin, you save in time writing the code, you write/see less code, 
   and have some flexibility afforded by some of the various methods provided by
   the plugin. But everyone’s perception of that value will vary.

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Safe Function Call] Does it use 'echo' or '_e'?’ is closed to
new replies.

 * ![](https://ps.w.org/safe-function-call/assets/icon-128x128.png?rev=972887)
 * [Safe Function Call](https://wordpress.org/plugins/safe-function-call/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/safe-function-call/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/safe-function-call/)
 * [Active Topics](https://wordpress.org/support/plugin/safe-function-call/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/safe-function-call/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/safe-function-call/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Scott Reilly](https://wordpress.org/support/users/coffee2code/)
 * Last activity: [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-safe-function-call-does-it-use-echo-or-_e/#post-2716469)
 * Status: resolved