1. 程式人生 > >echo 0000

echo 0000

沒有 con sql into sage spa ssa span stmt

一個奇怪的問題,正常狀態下如果sql插入失敗,則輸出0000,代碼如下:

$stmt=$db->prepare("insert into message(user,title,content,time) values(?,?,?,?)");
    if($stmt->execute(array($user,$title,$content,$time))){
        echo 1111;
    }else{
        echo 0000;
    }

結果執行失敗只輸出了一個0,如果改成其他數字,比如echo 9999,echo 900000 都沒有問題,但是只要0開頭的通通只能輸出一個0,後面的不會輸出

這是為神馬?

echo 0000