Created
October 17, 2013 18:18
-
-
Save Edocsyl/7029698 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
//string und array definieren | |
$string = "abcde"; | |
$array = array(); | |
//string verdrehen | |
$string = strrev($string); | |
//VARIANTE 1 | |
//string in ein array packen | |
array_push($array, $string); | |
//array ausgeben | |
print_r($array); | |
echo "<br>"; | |
//VARIANTE 2 | |
//string in chars splitten | |
//und dem array uebergeben | |
$array = str_split($string); | |
//array ausgeben | |
print_r($array); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment