$response
var has a component called custom_test_name
which looks like below:
[Test_Name]ad.no.check1.check2.check3
and here is the small PHP code:
<?php
echo "<class="."com.tests.".$response["custom_test_name"][1]."</class>";
?>
This prints the <class=com.tests.[</class>
..check first character [
of custom_test_name
and similarly echoing of ["custom_test_name"][2]
prints T
, [3]
prints e
....However, how to print/echo only the specifics in this case?. For eg. echoing just this ad.no.check1.check2.check3
and eliminating out that [Test_Name]
. Is there a way we can specify the range/some other approach?