Advertisement
Guest User

Untitled

a guest
Jul 6th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. /*
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.5.0.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. class mutex
  15. {
  16. public $path = '/tmp';
  17.  
  18. public function mutex($lockName)
  19. {
  20. $this->lockName = preg_replace('/[^a-z0-9]/', '', $lockName);
  21. }
  22.  
  23. public function getlock()
  24. {
  25. return flock($this->getFileHandle(), LOCK_EX);
  26. ...............................................................
  27. ...............................
  28. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement