Closed getdave closed 7 years ago
$serialize = $file_pathinfo['filename'] . '-' . crc32( serialize( $args ) );
crc32 is faster than hash so update to use that when creating unique file names
crc32
hash
Complete
$serialize = $file_pathinfo['filename'] . '-' . crc32( serialize( $args ) );
crc32
is faster thanhash
so update to use that when creating unique file names