PHP Basic Functions Function Description array() Creates an array array_push() Inserts one or more elements to the end of an array shuffle() Shuffles an array sizeof() Alias of count() sort() Sorts an array count() Counts elements in an array, or properties in an object uasort() Sorts an array with a user-defined function and maintain index association date() Formats a local time/date getdate() Returns an array that contains date and time information for a Unix timestamp mktime() Returns the Unix timestamp for a date strftime() Formats a local time/date according to locale settings strptime() Parses a time/date generated with strftime() time() Returns the current time as a Unix timestamp chdir() Changes the current directory dir() Opens a directory handle and returns an object addcslashes() Returns a string with backslashes in front of the specified characters addslashes() Returns a string with backslashe...