Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Last active May 16, 2019 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaviors200/6df81e5089d631f87c7d3cc1689eed5a to your computer and use it in GitHub Desktop.
Save flaviors200/6df81e5089d631f87c7d3cc1689eed5a to your computer and use it in GitHub Desktop.
String as array
<?php
$lastName = "Biscaldi";
echo $lastName[0];
echo $lastName[3];
echo $lastName[4];
// Output Bca
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment