Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. exec( 'ls', $output );
  2.  
  3. if ( empty($output) ) {
  4.     $this->showError();
  5.     die;
  6. }
  7.  
  8. ------
  9.  
  10. private function showError()
  11. {
  12.     echo('
  13. You must run the script using "Git bash" or other proper console emulator
  14. ');
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement