La función chunk_split() es una función integrada en PHP. La función chunk_split() se utiliza para dividir una string en fragmentos más pequeños de una longitud específica.
Sintaxis:
string chunk_split($string, $length, $end)
Parámetros: Esta función acepta tres parámetros como se muestra en la sintaxis anterior y se describen a continuación:
- $string : este parámetro especifica una string que se necesita fragmentar.
- $longitud : este parámetro especifica un número entero que especifica la longitud del fragmento. Esa es la longitud de las partes fragmentadas.
- $end : este parámetro especifica la secuencia de finalización de línea.
Valor de retorno: esta función devuelve la string dividida en partes más pequeñas.
Ejemplos:
Input : string = "geeksforgeeks" length = 4 end = "." Output: Geek.sfor.Geek.s. Input: string = "Twinkle bajaj" length = 2 end = "*" Output: Tw*in*kl*e *ba*ja*j*
Los siguientes programas ilustran la función chunk_split() en PHP:
Programa 1:
PHP
<?php // PHP program to illustrate the // chunk_split function $str = "Twinkle bajaj"; echo chunk_split($str, 2, "*"); ?>
Producción:
Tw*in*kl*e *ba*ja*j*
Programa 2:
PHP
<?php // PHP program to illustrate the // chunk_split function $str = "geeksforgeeks"; // Returns a string with a '.' // placed after every four characters. echo chunk_split($str, 4, "."); ?>
Producción:
geek.sfor.geek.s.
Programa 3:
PHP
<?php // PHP program to illustrate the // chunk_split function $str = "abcd"; echo chunk_split($str, 4, "@@"); ?>
Producción:
abcd@@
Programa 4:
PHP
<?php // PHP program to illustrate the // chunk_split function // If specified length is more than // string length, then added at the // end. $str = "abcd"; echo chunk_split($str, 10, "@@"); ?>
Producción:
abcd@@
Referencia:
http://php.net/manual/en/function.chunk-split.php
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA