Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. class UniqueId {
  4.  
  5. private $id;
  6.  
  7. public function __construct($prefix = '')
  8. {
  9. $this->id = uniqid($prefix, true);
  10. }
  11.  
  12. public function __toString()
  13. {
  14. return $this->id;
  15. }
  16. }
  17.  
  18.  
  19. // Usage:
  20.  
  21. $profile->unique_id = (string) new UniqueId();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement