I'm working with php/mySQL/Apache. I have an array with two positions.
print_r($pair) returns Array ( [0] => Maria João [1] => 1 )
When I do
$pair = explode("-",$b);
if(count($pair)==2){
$investigador = $pair[0];
$ponderacao = $pair[1]; }
it works.
When I do
$pair = explode("-",$b);
$investigador = $pair[0];
$ponderacao = $pair[1];
it returns "Undefined offset: 1"
Is this a bug?
Thanks in advance.
During Explode: maybe there is a chance that the string is not containt exact match whatever you given as reference in explode and due to that the notice occur.
try this,
For Example,
OUTPUT:
Now Just change the string nd try again
OUTPUT: