PHP echo $ dizi [$ i] bir şey görünmüyor

0 Cevap php

Ben şu PHP (Version 5.3.0) kodu var:

$URL = "http://www.example.com/";

IF ($URL != "") 
try {
    $curl = curl_init();
    curl_setopt ($curl, CURLOPT_URL, $URL);
    curl_setopt ($curl, CURLOPT_RETURNTRANSFER, true);
    $html = curl_exec ($curl);

    $array = str_split($html);

    for ($i=0;$i<20;$i++) echo $array[$i]," ";

}
 catch (Exception $e) {
      print $e->getMessage();
}

beklediğim ve görüntüler gibi bu işleri:

< ! D O C T Y P E h t m l P U B L I

: Ben satırı değiştirin Olsa

for ($i=0;$i<20;$i++) echo $array[$i];

then I get nothing displayed. How come nothing is shown in the second case?

0 Cevap