输出函数
echo($string)
: 输出一个或多个字符串。print($string)
: 输出一个字符串。printf($format, $args)
: 根据指定的格式输出格式化的字符串。var_dump($expression)
: 打印变量的相关信息,包括类型和值。print_r($expression)
: 打印变量的易读版本,用于调试和开发。
时间函数
time()
: 返回当前的UNIX时间戳。date($format, $timestamp)
: 格式化日期和时间。strtotime($time, $now)
: 将任何英文文本的日期或时间描述解析为UNIX时间戳。gmdate($format, $timestamp)
: 格林威治标准时间(GMT)下的日期和时间。mktime($hour, $minute, $second, $month, $day, $year)
: 返回一个日期的UNIX时间戳。