Funciones String php
En esta ocasión mostrare un Ejemplo de funciones que trabajan con los string en php la descripcion de funciones las pondre dentro del codigo:
aqui el codigo:
aqui el codigo:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>//Bucle Foreach</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<section>
<?php
//el echo muestra una o mas cadenas
//explode - divide string en array
$texto = "Bienvenidad realidad tan lejos de aqui";
//separador,variable
$texto_array=explode( ' ',$texto );
print_r($texto_array);
echo "<br><br>";
echo $texto_array[0];
//join alias de implode
$texto_string = implode( " ",$texto_array);
echo $texto_string."<br>";
//lefirst = pasa a minuscula el primer parametro de string
echo lcfirst($texto);
//ltrim - retira espacios en blanco al inicio de una palabra
echo ltrim(" lol")."<br>";
//md5 cakcyka ek hash de un string
echo md5($texto)."<br>";
//parse_strr convierte el string en variable seguido del igual
$Marray;
$base = "variable1=ete es la valor&variable2=AnotherValue&Marray[0]=valor1&Marray[1]=valor2&Marray[cp]=SJ";
parse_str($base);
echo $variable1."<br>";
echo $variable2."<br>";
echo $Marray[0]."<br>";
echo $Marray[1]."<br>";
echo $Marray['cp']."<br>";
//print muestra cadena
print "txt";
//rtrim retira los espacion en blanco
#str_replace - reemplaza todas las aparicioes del tring buscado con el remplazo
$resultado = str_replace('fe','F3',$texto,$conteo);
echo $resultado."<br>";
echo $conteo."<br>";
//str_ireplace - version insesible a mayusculas y minusculas
$resultado2 = str_replace('fE','f3',$texto);
echo $resultado2."<br>";
#str_repeat - Repite un string
str_repeat($Marray[0],0);
#str_shuffle - Reorneda aleatoriamente una cadena
$texto_desordenada=str_shuffle($texto);
echo $texto_desordenada."<br>";
#str_split - convierte string en un array
$array1=str_split($texto);
$array2=str_split($texto,4);
echo $array1[0];
echo "<br>".$array2[3]."<br>";
#strip_tags - Retiras las etiquetas HTML y PHP de un string.
#strlen - obtiene la longitud de un string SIMILAR a .lenght
echo strlen( $texto )."<br>";
#streev -invierte un string
echo strrev($texto)."<br>";
#strtolower - convierte una cadena a minuscula
echo strtolower($texto)."<br>";
#strtoupper - convierte un string en mayusculas
echo strtoupper($texto)."<br>";
#substr_count - cuenta el numero de apariicones del subtring
echo "<br>_ ".$texto."<br>substr_count(es):";
echo substr_count($texto, 'es',0,10)."<br>";
#substr_replace - reemplaza el texto dentro de una aparicion de un string
#substr - Devuelve parte de una cadena
$resultado = substr($texto, 5,4)."<br>";
echo $resultado;
#trim -Elimina espacio u otro caracter solo blanco del inicio y final de la cadena
#ucfirst - Convierte primer caracter de una cadena en mayusculas
echo ucfirst($texto);
#ucwords - convierte a mayusculas el primer caracter de cada palabra de una cadena
echo ucwords($texto);
#wordwrap - Ajusta un string hasta un numero dado de caracteres
$a252 = wordwrap($texto, 8,"<br>",false);
echo $a252."<br>";
?>
</section>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>//Bucle Foreach</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<section>
<?php
//el echo muestra una o mas cadenas
//explode - divide string en array
$texto = "Bienvenidad realidad tan lejos de aqui";
//separador,variable
$texto_array=explode( ' ',$texto );
print_r($texto_array);
echo "<br><br>";
echo $texto_array[0];
//join alias de implode
$texto_string = implode( " ",$texto_array);
echo $texto_string."<br>";
//lefirst = pasa a minuscula el primer parametro de string
echo lcfirst($texto);
//ltrim - retira espacios en blanco al inicio de una palabra
echo ltrim(" lol")."<br>";
//md5 cakcyka ek hash de un string
echo md5($texto)."<br>";
//parse_strr convierte el string en variable seguido del igual
$Marray;
$base = "variable1=ete es la valor&variable2=AnotherValue&Marray[0]=valor1&Marray[1]=valor2&Marray[cp]=SJ";
parse_str($base);
echo $variable1."<br>";
echo $variable2."<br>";
echo $Marray[0]."<br>";
echo $Marray[1]."<br>";
echo $Marray['cp']."<br>";
//print muestra cadena
print "txt";
//rtrim retira los espacion en blanco
#str_replace - reemplaza todas las aparicioes del tring buscado con el remplazo
$resultado = str_replace('fe','F3',$texto,$conteo);
echo $resultado."<br>";
echo $conteo."<br>";
//str_ireplace - version insesible a mayusculas y minusculas
$resultado2 = str_replace('fE','f3',$texto);
echo $resultado2."<br>";
#str_repeat - Repite un string
str_repeat($Marray[0],0);
#str_shuffle - Reorneda aleatoriamente una cadena
$texto_desordenada=str_shuffle($texto);
echo $texto_desordenada."<br>";
#str_split - convierte string en un array
$array1=str_split($texto);
$array2=str_split($texto,4);
echo $array1[0];
echo "<br>".$array2[3]."<br>";
#strip_tags - Retiras las etiquetas HTML y PHP de un string.
#strlen - obtiene la longitud de un string SIMILAR a .lenght
echo strlen( $texto )."<br>";
#streev -invierte un string
echo strrev($texto)."<br>";
#strtolower - convierte una cadena a minuscula
echo strtolower($texto)."<br>";
#strtoupper - convierte un string en mayusculas
echo strtoupper($texto)."<br>";
#substr_count - cuenta el numero de apariicones del subtring
echo "<br>_ ".$texto."<br>substr_count(es):";
echo substr_count($texto, 'es',0,10)."<br>";
#substr_replace - reemplaza el texto dentro de una aparicion de un string
#substr - Devuelve parte de una cadena
$resultado = substr($texto, 5,4)."<br>";
echo $resultado;
#trim -Elimina espacio u otro caracter solo blanco del inicio y final de la cadena
#ucfirst - Convierte primer caracter de una cadena en mayusculas
echo ucfirst($texto);
#ucwords - convierte a mayusculas el primer caracter de cada palabra de una cadena
echo ucwords($texto);
#wordwrap - Ajusta un string hasta un numero dado de caracteres
$a252 = wordwrap($texto, 8,"<br>",false);
echo $a252."<br>";
?>
</section>
</body>
</html>
Anexos:
Bienvenida Realidad, Me encanto esta serie |
Comentarios
Publicar un comentario