La presentazione è in caricamento. Aspetta per favore

La presentazione è in caricamento. Aspetta per favore

Funzioni stringhe. chr Restituisce il carattere di un valore ascii dato. Per vedere lelenco dei codici ascii clicca QQQQ uuuu iiiiEsempio <?php echo chr(52)."<br.

Presentazioni simili


Presentazione sul tema: "Funzioni stringhe. chr Restituisce il carattere di un valore ascii dato. Per vedere lelenco dei codici ascii clicca QQQQ uuuu iiiiEsempio <?php echo chr(52)."<br."— Transcript della presentazione:

1 Funzioni stringhe

2 chr Restituisce il carattere di un valore ascii dato. Per vedere lelenco dei codici ascii clicca QQQQ uuuu iiiiEsempio <?php echo chr(52)."<br />"; echo chr(052)."<br />"; echo chr(0x52)."<br />"; ?> The output of the code above will be: 4 * R

3 echo Restituisce stringhe sullo schermo o il contenuto di una variabile echo ciao; //ciao $ciao=ciao; echo $ciao; //ciao

4 explode The explode() function breaks a string into an array. Example Example In this example we will break a string to an array: In this example we will break a string to an array: The output of the code above will be: The output of the code above will be: Array ( [0] => Hello [1] => world. [2] => It's [3] => a [4] => beautiful [5] => day. ) Array ( [0] => Hello [1] => world. [2] => It's [3] => a [4] => beautiful [5] => day. )

5 Ltrim La funzione rimuove gli spazi bianchi e altri caratteri predefiniti dal lato sinistro di una stringa. La funzione rimuove gli spazi bianchi e altri caratteri predefiniti dal lato sinistro di una stringa.Esempio "; echo "With ltrim: ". ltrim($str); ?> "; echo "With ltrim: ". ltrim($str); ?> Risultato Without ltrim: Hello World! With ltrim: Hello World!

6 Rtrim La funzione rimuove gli spazi bianchi e altri caratteri predefiniti partendo dal lato destro di una stringa. La funzione rimuove gli spazi bianchi e altri caratteri predefiniti partendo dal lato destro di una stringa.Esempio "; echo "With rtrim: ". rtrim($str); ?> "; echo "With rtrim: ". rtrim($str); ?> Risultato sul browser Risultato sul browser Without rtrim: Hello World! With rtrim: Hello World! Without rtrim: Hello World! With rtrim: Hello World!

7 print Restituisce una o più stringhe Restituisce una o più stringhe Primo esempio Primo esempio "; print $str." I don't know!"; ?> "; print $str." I don't know!"; ?> Il risultato sarà: Il risultato sarà: Who's Kai Jim? Who's Kai Jim? I don't know! Esempio 2 Who's Kai Jim? Who's Kai Jim? I don't know! Esempio 2 Risultato: Risultato: This text spans multiple lines. This text spans multiple lines.

8 Str_repeat La funzione ripete per un certo numero di volte un certo La funzione ripete per un certo numero di volte un certo Example Example The output of the code above will be: The output of the code above will be:..........................

9 Str_replace La funzione sostituisce alcuni caratteri con altri caratteri in una stringa La funzione sostituisce alcuni caratteri con altri caratteri in una stringa Esempio Esempio The output of the code above will be: The output of the code above will be: Hello Peter! Hello Peter!

10 Strpos La funzione restituisce la posizione della prima occorrenza di una stringa allinterno di unaltra stringa Esempio The output of the code above will be: The output of the code above will be: 6

11 Strlen Questa funzione restituisce la lunghezza di una stringa Questa funzione restituisce la lunghezza di una stringa Example Example The output of the code above will be: The output of the code above will be: 12 12

12 Strrpos Trova la posizione dellultima occorrezza di una stringa dentro unaltra stringa Trova la posizione dellultima occorrezza di una stringa dentro unaltra stringa Example Example The output of the code above will be: The output of the code above will be: 6

13 Substr La funzione restituisce una parte di una stringa La funzione restituisce una parte di una stringa Esempio 1 Esempio 1 The output of the code above will be: The output of the code above will be: world! world! Esempio2 Esempio2 The output of the code above will be: The output of the code above will be: world world

14 The substr_compare() function compares two strings from a specified start position. The substr_compare() function compares two strings from a specified start position. This function returns: This function returns: 0 - if the two strings are equal 0 - if the two strings are equal <0 - if string1 (from startpos) is less than string2 <0 - if string1 (from startpos) is less than string2 >0 - if string1 (from startpos) is greater than string2 >0 - if string1 (from startpos) is greater than string2 Esempio1 Esempio1 The output of the code above will be: The output of the code above will be: 0 Esempio2 Esempio2 The output of the code above will be: The output of the code above will be: 0 Esempio 3 Esempio 3 The output of the code above will be: The output of the code above will be:

15 Substr_count() The substr_count() function counts the number of times a substring occurs in a string. Example Example The output of the code above will be: The output of the code above will be: 2

16 Trim The trim() function removes whitespaces and other predefined characters from both sides of a string. The trim() function removes whitespaces and other predefined characters from both sides of a string. Syntax Syntax "; echo "With trim: ". trim($str); ?> The browser output of the code above will be: "; echo "With trim: ". trim($str); ?> The browser output of the code above will be: Without trim: Hello World! With trim: Hello World! Without trim: Hello World! With trim: Hello World! If you select "View source" in the browser window, you will see the following HTML: If you select "View source" in the browser window, you will see the following HTML: Without trim: Hello World! With trim: Hello World! Without trim: Hello World! With trim: Hello World!

17 Strtolower() Converte tutti i caratteri di stringa in minuscolo Converte tutti i caratteri di stringa in minuscolo Il risultato di questo codice php sarà: Il risultato di questo codice php sarà: hello world. hello world.

18 Strtoupper() Converte tutti i caratteri di una stringa in maiuscolo Converte tutti i caratteri di una stringa in maiuscolo Il risultato del codice soprascritto sarà: HELLO WORLD! Il risultato del codice soprascritto sarà: HELLO WORLD!


Scaricare ppt "Funzioni stringhe. chr Restituisce il carattere di un valore ascii dato. Per vedere lelenco dei codici ascii clicca QQQQ uuuu iiiiEsempio <?php echo chr(52)."<br."

Presentazioni simili


Annunci Google