PHP PDO döndürür bir dizi getirebilir?

0 Cevap php
$GetUid = $dbConnect->prepare("SELECT UID FROM users WHERE username = :username");
$GetUid->execute($RegisterData3);
$UserID = $GetUid->fetch();

neden dizi değil bir dize çıkmıyor?

var_dump ('$ UserID') diyor

array
  'UID' => string '45' (length=2)
  0 => string '45' (length=2)

olmalıdır

array
  'UID' => string '45' (length=2)

update* what about the 0 ? where does it came from ? thanks for the replies.

0 Cevap