Mega Code Archive

 
Categories / Php / Strings
 

Indexing Strings

<?php     $test = "test";     print $test[0];      print $test[2];  ?>