PHP Built-in Functions
PHP has 1000+ built-in functions. These are the most important categories.
Date & Time
date("Y-m-d")time()— Unix timestampstrtotime("next Monday")
File System
file_get_contents()file_put_contents()
JSON
json_encode($arr)json_decode($str, true)
Regular Expressions
preg_match($pattern, $str)preg_replace($pattern, $replace, $str)