CONTINUACION PHP

2 de Agosto del 2017

Funciones matematicas

echo abs(-4.2); // 4.2 (double/float)
echo max(23167);  // 7

Funciones para texto

STRLEN:

<?php
$str = 'abcdef';
echo strlen($str); // 6

$str = ' ab cd ';
echo strlen($str); // 7
?>
__________________________________________________________
SUBSTR

<?php
echo substr('abcdef', 1);     // bcdef
echo substr('abcdef', 1, 3);  // bcd
echo substr('abcdef', 0, 4);  // abcd
echo substr('abcdef', 0, 8);  // abcdef
echo substr('abcdef', -1, 1); // f
___________________________________________________
UCFIRST

<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
_____________________________________________________
UCWORDS

<?php
$foo = 'hello world!';
$foo = ucwords($foo);             // Hello World!

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>
____________________________________________________
STRTOUPPER

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // muestra: MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>
____________________________________________________
STRTOLOWER

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);
echo $str; // Prints mary had a little lamb and she loved it so

?>

Comentarios

Entradas más populares de este blog

Ejercicios de DFD Y CICLO FOR

Ejemplos de Ciclo for y FIBONACCI

CONTINUACIÓN DFD