Created
March 19, 2020 13:31
-
-
Save yfktn/a639f3bb343373f3bcf77b3c1609468a to your computer and use it in GitHub Desktop.
Cara bikin kode booking
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// di suatu fungsi pada sebuah model booking | |
protected function generateKodeBooking() | |
{ | |
$penyewa = $this->penyewa_id; | |
$disewa = $this->disewa_id; | |
// dapatkan random char sebanyak 5 buah | |
// https://stackoverflow.com/questions/5438760/generate-random-5-characters-string | |
$rndchar = substr(str_shuffle(str_repeat("123456789ABCDEFGHJKLMNPQRSTUVWXYZ", 5)), 0, 5); | |
return sprintf("%s%d%d", $rndchar, $penyewa, $disewa); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment