XCIX . String functions

Índice
addcslashes -- String entre aspas com barras no estilo C
addslashes -- String entre aspas com barras
bin2hex -- Converte um dado binário em hexadecimal
chop -- Alias de rtrim()
chr -- Retorna um caracter específico
chunk_split -- Divide uma string em pequenos pedaços
convert_cyr_string -- Converte de um caracter cirílico para outro
count_chars -- Retorna informações sobre os caracteres usados numa string
crc32 -- Calcula polinômio crc32 de uma string
crypt -- Único caminho de codificação de string (hashing)
echo -- Exibe uma ou mais strings
explode -- Divide uma string em strings
fprintf -- Write a formatted string to a stream
get_html_translation_table -- Retorna a tabela de traduçaõ usada por htmlspecialchars() e htmlentities()
hebrev -- Converte texto lógico Hebraico para texto visual
hebrevc -- Converte um texto lógico Hebráico para um texto visual com conversão newline
html_entity_decode -- Converte todas as entidades HTML para os seus caracteres
htmlentities -- Converte todos os caracteres para HTML entities
htmlspecialchars -- Converte caracteres especiais para a realidade HTML
implode -- Junta elementos de uma matriz em uma string
join -- Junta elementos de uma matriz com uma string
levenshtein -- Calcula a distância Levenshtein entre duas strings
localeconv -- Obtém a informação da formatação numérica
ltrim -- Retira whitespace do início da string
md5_file -- Calculat hash md5 de um dado arquivo
md5 -- Calcula hash md5 de uma string
metaphone -- Calcula a metaphone key de uma string
money_format -- Formats a number as a currency string
nl_langinfo -- Retorna informação de linguagem e local
nl2br -- Insere quebras de linha HTML antes de todas newlines em uma string
number_format -- Formata um número com os milhares agrupados
ord -- Retorna o valor ASCII do caractere
parse_str -- Converte a string em variáveis
print -- Mostra uma string
printf -- Mostra uma string formatada
quoted_printable_decode -- Converte uma string quoted-printable para uma string de 8 bit
quotemeta -- Adiciona uma barra invertida antes dos meta caracteres
rtrim -- Retira espaço em branco do final da string
setlocale -- Set locale information
sha1_file -- Calcula a hash sha1 de um arquivo
sha1 -- Calcula a hash sha1 de uma string
similar_text -- Calculate the similarity between two strings
soundex -- Calculate the soundex key of a string
sprintf -- Return a formatted string
sscanf -- Parses input from a string according to a format
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_word_count -- Return information about words used in a string
strcasecmp -- Binary safe case-insensitive string comparison
strchr -- Encontra a primeira ocorrência de um caractere
strcmp -- Comparação de string segura para binário
strcoll -- Comparação de string baseada no local
strcspn -- Encontra o tamanho do segmento inicial que não contenha a mascara
strip_tags -- Retira as tags HTML e PHP de uma string
stripcslashes -- Desfaz o efeito de addcslashes()
stripslashes -- Desfaz o efeito de addslashes()
stristr -- Case-insensitive strstr()
strlen -- Retorna o tamanho de uma string
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
strpos -- Find position of first occurrence of a string
strrchr -- Find the last occurrence of a character in a string
strrev -- Reverse 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_count -- Count the number of substring occurrences
substr_replace -- Replace text within a portion of a string
substr -- Return part of a string
trim -- Strip whitespace from the beginning and end of a string
ucfirst -- Make a string's first character uppercase
ucwords -- Uppercase the first character of each word in a string
vprintf -- Output a formatted string
vsprintf -- Return a formatted string
wordwrap -- Wraps a string to a given number of characters using a string break character.