REG preg_match_all -- 进行全局正则表达式匹配 preg_match -- 进行正则表达式匹配 preg_quote -- 转义正则表达式字符 preg_replace_callback -- 用回调函数执行正则表达式的搜索和替换 preg_replace -- 执行正则表达式的搜索和替换 preg_split -- 用正则表达式分割字符串 ereg_replace -- 正则表达式替换 ereg -- 正则表达式匹配 eregi_replace -- 不区分大小写的正则表达式替换 eregi -- 不区分大小写的正则表达式匹配 split -- 用正则表达式将字符串分割到数组中 spliti -- 用正则表达式不区分大小写将字符串分割到数组中 sql_regcase -- 产生用于不区分大小的匹配的正则表达式 字符串 str_getcsv -- Parse a CSV string into an array str_ireplace -- Case-insensitive version of str_replace(). str_pad -- Pad a string to a certain length with another string str_repeat -- Repeat a string str_replace -- Replace all occurrences of the search string with the replacement string str_rot13 -- Perform the rot13 transform on a string str_shuffle -- Randomly shuffles a string str_split -- Convert a string to an array str_word_count -- Return information about words used in a string strcasecmp -- Binary safe case-insensitive string comparison strchr -- 别名 strstr() strcmp -- Binary safe string comparison strcoll -- Locale based string comparison strcspn -- Find length of initial segment not matching mask strip_tags -- Strip HTML and PHP tags from a string stripcslashes -- Un-quote string quoted with addcslashes() stripos -- Find position of first occurrence of a case-insensitive string stripslashes -- Un-quote string quoted with addslashes() stristr -- Case-insensitive strstr() strlen -- Get string length strnatcasecmp -- Case insensitive string comparisons using a "natural order" algorithm strnatcmp -- String comparisons using a "natural order" algorithm strncasecmp -- Binary safe case-insensitive string comparison of the first n characters strncmp -- Binary safe string comparison of the first n characters strpbrk -- Search a string for any of a set of characters strpos -- Find position of first occurrence of a string strrchr -- Find the last occurrence of a character in a string strrev -- Reverse a string strripos -- Find position of last occurrence of a case-insensitive string in a string strrpos -- Find position of last occurrence of a char in a string strspn -- Find length of initial segment matching mask strstr -- Find first occurrence of a string strtok -- Tokenize string strtolower -- Make a string lowercase strtoupper -- Make a string uppercase strtr -- Translate certain characters substr_compare -- Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters substr_count -- Count the number of substring occurrences substr_replace -- Replace text within a portion of a string substr -- Return part of a string
Date 函数描述:string date(string format, int [timestamp]); 说明:函数date根据参数format生成一个描述日期timestamp的字符串。参数timestamp可选,若给定,则为所需的时间戳,即从1970年1月1日开始的秒数;若为空白,则使用当前日期。Format代码如下表: 返回值:函数date返回生成的日期描述字符串。
MkTime 函数描述:int mktime(int hour, int minute, int second, int month, int day, int year); 返回值:函数mktime返回给出日期的时间戳,即从1970年1月1日开始的秒数。所有参数都可选,若为空,则使用当前值。若某参数超过范围,函数mktime也可以正确解释。例如,用13作为月份就等于第二年的一月份。
GmmkTime 函数描述:int gmmktime(int hour, int minute, int second, int month, int day, int year); 返回值:函数gmmktime与函数mktime相类似,但不同的是他的各参数均被认为是格林威治时间。
Time 函数描述:int time(); 返回值:函数time返回当前的时间戳。 MicroTime 函数描述:string microtime(); 返回值:函数microtime返回一个字符串,其组成为两个由空格隔开的成员,第一个成员是系统时间的毫秒数,第二个成员是从1970年1月1日开始计的秒数,即系统时间的时间戳。