Created
January 20, 2015 11:56
-
-
Save AndreaBarghigiani/f7d06e11df36338ceeb9 to your computer and use it in GitHub Desktop.
Esercizio funzione riduci_stringa()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Manca l'inserimento di un parametro da passare alla funzione | |
function riduci_stringa($stringa){ | |
//Il secondo parametro di substr() era sbagliato | |
//perchè nn serve un negativo. | |
//puoi approfondire su: http://php.net/manual/en/function.substr.php | |
echo substr( $stringa, 2); | |
} | |
//Adesso che la funzione accetta un parametro | |
//puoi passargli una qualsiasi stringa. | |
riduci_stringa("Proviamo una stringa"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment