GEt Index String
<?php
function getIndexString($string, $index)
{
return $string[$index];
};
echo getIndexString("Hello World", 6); // Output: W
<?php
function getIndexString($string, $index)
{
return $string[$index];
};
echo getIndexString("Hello World", 6); // Output: W