PHP – rand() Function
The PHP rand() function generates a random integer.
The PHP readdir() function returns the name of the next entry in a directory.
The PHP readfile() function reads a file and writes it to the output buffer.
The PHP realpath_cache_get() function returns realpath cache entries.
The PHP realpath_cache_size() function returns realpath cache size.
The PHP require keyword is used to embed PHP code from another file. If the file is not found, a fatal error is thrown and the program stops.
The PHP require_once keyword is used to embed PHP code from another file.
The PHP reset() function moves the internal pointer to the first element of the array.
The PHP restore_error_handler() function restores the previous error handler after changing it with the set_error_handler() function.
The PHP restore_exception_handler() function restores the previous exception handler after changing it with the set_exception_handler() function.
The PHP rewind() function rewinds the position of the file pointer to the beginning of the file.
The PHP return keyword ends a function and uses the result of an expression as the return value of the function.
The PHP rewinddir() function resets the directory handle created by opendir().
The PHP scandir() function returns an array of files and directories of the specified directory.