basic-problem / get-index-string.php

GEt Index String

<?php
function getIndexString($string, $index)
{
    return $string[$index];
};


echo getIndexString("Hello World", 6); // Output: W

GEt Index String | basic-problem | Study Notes | Ferdyhape