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.

Slides:



Advertisements
Presentazioni simili
Primary Italian Saying How You Are.
Advertisements

I giorni della settimana
I numeri, l’ora, I giorni della settimana
Giovanni Falcone & Paolo Borsellino.
Cache Memory Prof. G. Nicosia University of Catania
Prof. Stefano Bistarelli
Teoria e Tecniche del Riconoscimento
Interfacce Java.
Alcune Classi Standard Object, Vettori. Esercizio dellultima volta Superclasse Persona Sottoclasse Libro.
Università degli Studi di Cassino e del Lazio Meridionale Dipartimenti di Scienze Umane, Sociali e della Salute Lingua Inglese a.a (Dott. Saverio.
Each student will be able to ask an adult or stranger: What do you like to do? and What dont you like to …?
© and ® 2011 Vista Higher Learning, Inc.4B.1-1 Punto di partenza Italian uses two principal tenses to talk about events in the past: the passato prossimo.
Università La Sapienza Web programming e programmazione multimediale 1 Web Programming e comunicazione multimediale Lezione 10: PHP.
Risore sul web (JavaScript) tm
J0 1 Marco Ronchetti - Corso di Formazione Sodalia – Febbraio 2001 – Modulo Web Programming Tomcat configuration.
prompt> java SumAverage
Costruzione di Interfacce Lezione 10 Dal Java al C++ parte 1
1. Conoscere luso delle collezioni in Java Comprendere le principali caratteristiche nelle varie classi di Collection disponibili Saper individuare quali.
JAVA C import java.util.*; #include <stdio.h>
1 Esercitazione sui segnali Problema: creare un programma analizzatore di file testuali che prenda come argomenti il nome di un file e una sequenza di.
Corso di Informatica A.A Corso di Informatica Laurea Triennale - Comunicazione&Dams Dott.ssa Adriana Pietramala Laurea.
2000 Prentice Hall, Inc. All rights reserved. 1 Capitolo 3 - Functions Outline 3.1Introduction 3.2Program Components in C++ 3.3Math Library Functions 3.4Functions.
Chistmas is the most loved holiday of the years. Adults and children look forward to Chistmas and its magical atmosphere. It is traditional to decorate.
Players: 3 to 10, or teams. Aim of the game: find a name, starting with a specific letter, for each category. You need: internet connection laptop.
AN Fondam98 Input Output Input Output I files standard di I/O.
Ischia, giugno 2006Riunione Annuale GE 2006 Exploiting the Body Effect to Improve Analog CMOS Circuit Performances *P. Monsurrò, **S. Pennisi, *G.
by Charlotte This is written in the Hebrew Talmud, the book where all of the sayings and preaching of Rabbis are conserved over time. Questo è scritto.
Alcuni, qualche, un po’ di
Guardate le seguenti due frasi:
Italian Regular Verbs Italian Regular Verbs Regular or irregular?? Italian verbs are either regular or irregular. Italian irregular verbs MUST be memorized…
You will see a very spectacular picture ? Vuoi vedere una roccia spettacolare ?
Do we make merry? What do we celebrate ? Don t you know? …the United Europe!
MERRY CHRISTMAS ! BUON NATALE ! Veniva nel mondo la luce vera, quella che illumina ogni uomo. (Gv 1,9) For the Light was coming into the world,the true.
The Prayer La preghiera Andrea Céline Bocelli Dion.
Introduzione a PHP Laboratorio di Progettazione Web AA 2007/2008 Chiara Renso ISTI- CNR -
In the following slides there are photos and work of Primary School Via Fiume Ins. Maria Aurelia Cosentino Part 1 Our place, our water…
ESERCIZI SVOLTI DI GRAMMATICA INGLESE
Present Perfect.
UG40 Energy Saving & Twin Cool units Functioning and Adjustment
Introduzione al linguaggio C. Cos’e’ il C? Il C e’ un linguaggio ad alto livello Un compilatore C prende in input un file contenente codice sorgente C.
Collection & Generics in Java
Teorie e tecniche della Comunicazione di massa Lezione 7 – 14 maggio 2014.
You’ve got a friend in me!
Passato Prossimo. What is it?  Passato Prossimo is a past tense and it is equivalent to our:  “ed” as in she studied  Or “has” + “ed” as in she has.
Saluti ed espressioni Greetings in Italian.
Dynamic SQL.
CESANELLA PRIMARY SCHOOL SENIGALLIA - ITALY PLAYGROUND GAMES ELASTIC -ELASTIC -ELASTIC -ELASTIC -ELASTIC - ELASTIC - ELASTIC - ELASTIC - ELASTIC - ELASTIC.
The food Pyramid The breakfast. Food pyramid gives us instructions on how to eat well and stay healthy!!!
Buon giorno Io sono Professoressa Kachmar. Buon giorno Io sono Professoressa Kachmar.
Cuando Me Enamoro Quando M’Innamoro A Man Without Love M ộ t Ng ườ i Không Có Tình Yêu.
I giorni della settimana
Ontologia AA F. Orilia. Lez. 16 Discussione dell'approccio controfattualista di lewis condotta da Antonio De Grandis.
WE CLEAN THE WORLD FOR A BETTER FUTURE. EARTH DAY.
Accoppiamento scalare
TEORIE E TECNICHE DEL RICONOSCIMENTO Python: Debugging, 2: Understanding Python better.
L A R OUTINE D EL M ATTINO Ellie B.. Io mi sono svegliata alle cinque del mattino.
Passato prossimo dei verbi riflessivi con Essere
SUMMARY Interconnection of quadripoles RIEPILOGO Interconnessione di quadripoli RIEPILOGO Interconnessione di quadripoli.
Language of Algebra.
Language of Algebra. Basic concepts Key words Practice exercises Basic concepts Key words Practice exercises.
Buon giorno, ragazzi oggi è il quattro aprile duemilasedici.
Usare Excel per risolvere problemi….. Esercizi…..
MSc in Communication Sciences Program in Technologies for Human Communication Davide Eynard Facoltà di scienze della comunicazione Università della.
Present progressive Past progressive verbs. Present progressive Present progressive: formula positive; subject + ___/___/___ + verb+ ing + complimentary.
Oggi è mercoledì l’undici dicembre 2013
AusTel by taha.a.
PROGRAMMAZIONE BASH – ISTRUZIONE IF
Bubble Sort.
Oggi è lunedì il nove dicembre 2013
Transcript della presentazione:

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 />"; echo chr(052)."<br />"; echo chr(0x52)."<br />"; ?> The output of the code above will be: 4 * R

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

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. )

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!

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!

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.

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:

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!

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

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

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

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

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:

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

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!

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.

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!