php e_ code example
Example: _e in wordpress
/*
If you want to echo the translated string, then you will be using _e and when you just want to have the translated string, then you will be using __.
*/
_e('this is a message', 'twentyfourteen');
echo __('this is a message', 'twentyfourteen');