PHP Function Tools
- mktime - Create a UNIXTIMESTAMP from the given arguments. Please note that you have to fill them all out and that they are in this order: hour, minute, second, month, day, year.
- base64_decode - Decodes a bas64_encoded string.
- base64_encode - Encodes a given text into a bas64_encoded string.
- md5 - Generates an MD5 hash out of the argument.
- strlen - Gives you the length of a string.
- time - Shows the current time in a UNIXTIMESTAMP.
- date - Shows the date formatted in 'l dS \of F Y h:i:s A' from a UNIXTIMESTAMP.


