Skip to content

Instantly share code, notes, and snippets.

@Edocsyl
Created October 17, 2013 18:18
Show Gist options
  • Save Edocsyl/7029698 to your computer and use it in GitHub Desktop.
Save Edocsyl/7029698 to your computer and use it in GitHub Desktop.
<?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