rtrim (PHP 4, PHP 5, PHP 7) rtrim - Strip whitespace (or other characters) from the end of a string rtrim - 删除字符串末端的空白字符(或者其他字符) Description string rtrim ( string $str [, string $character_mask ] ) //This function returns a string with whitespace (or…
explode (PHP 4, PHP 5, PHP 7) explode - Split a string by string explode - 使用一个字符串分割另一个字符串 Description array explode ( string $delimiter , string $string [, int $limit = PHP_INT_MAX ] ) //Returns an array of strings, each of which is a substring of s…