PHP uniqid() – Are there any chances of Duplication

I’m currently using php’s uniqid() since the requirement is not to exceed 15 chars alphanumeric. But I’m worried if there’s any chances of duplication/collision because of more than thousand entries each day.

I can’t use salt since it exceeds 15 chars. Is it okay to just use uniqid() or is there a better solution?