Skip to content

Instantly share code, notes, and snippets.

View tarangpanchal18's full-sized avatar
Always Learning

Mr Panchal tarangpanchal18

Always Learning
View GitHub Profile
@tarangpanchal18
tarangpanchal18 / common_functions.php
Last active May 1, 2023 10:51
Common Useful functions for php
/**
* Function to generate File Name
*
* @param string $extension
* @param string $prefix
* @return string
*/
function generateRandomName($extension = '', $prefix = '') {
$bytes = random_bytes(16);
$name = bin2hex($bytes);