Closed jmurowaniecki closed 11 years ago
About the changes in
$strText = "i'm a lasagna hog"; $strTmp = str_split($strText); $strTmp = array_reverse($strTmp); $strTmp = join("",$strTmp); echo $strTmp;
to
echo join("", array_reverse(str_split("i'm a lasagna hog")));
I've made this change just to make the code more similar the original in javascript
"i'm a lasagna hog".split("").reverse().join("");
..And added some links from table of contents to his respective sections.
Fortitudo et honor, Victoria ad fortes.
Awesome!
About the changes in
to
I've made this change just to make the code more similar the original in javascript
..And added some links from table of contents to his respective sections.
Fortitudo et honor, Victoria ad fortes.