I am trying to curl a url, then explode page into an array to extract line with a link. I have a sample script, but I don't know what the "135" means. I'm not very good with php. Any help would be appreciated, thank you in advance.
Sample code:
$code = explode(" ",$result);
echo $code[135];
Question: What does the "135" represent in "echo $code[135];"?
$s = 'ab cd ef gh';and you do$a = explode(" ", $s);, then$awill be["ab", "cd", "ef", "gh"]and therefore$a[0]will be"ab",$a[1]will be"cd"and so on.