$ch = curl_init("url");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "test");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$outputArray = curl_exec($ch);
Sonra $ outputArray içerecektir:
Array
(
[0] => Array
(
[r1] => test response
[r2] => 4
[r3] => 32
)
)
Ben böyle bir şey yaptığınızda Yani PHP bir dizi olduğunu görmek ve bu şekilde tedavi edebilir düşünüyorum, ama olur
echo $outputCode[0][r_title]."\n";
bir hata veriyor:
PHP Fatal error: Cannot use string offset as an array in /www/test.php on line 75
(Line 75 yukarıdaki yankı biri olma)
Ben yanlış ne yapıyorum?