3
A
回答
14
08位於八進制基數(因爲它以0開頭),因此它是無效的。 See the documentation。
11
因爲08
和09
是無效的八進制數。 see warning in docs。
1
您正在鍵入以八進制數表示的無效數字。
-1
使用十六進制符號在數字前面加上0x。
因此,
$num = (int)0x9
$num == 9
0
// Syntax error
//(int)08 == (int)09==0
// This works
(int)08==0;
(int)09==0;
// This also works
(int)08 == ((int)09==0);
0
你明確地使用類型轉換(int)
更好地利用intval().
相關問題
- 1. 如何在elasticsearch中使用casting?
- 2. 爲什麼Generic Casting不能在這段代碼中工作?
- 3. 在php中如何實際工作ini_set?
- 4. pcntl_fork如何在PHP中工作?
- 5. mysqli_connect()如何在PHP中工作?
- 6. 路由如何在PHP laravel中工作?
- 7. getter和setter如何在PHP中工作
- 8. 數組如何在PHP中工作?
- 9. ftp上傳如何在PHP中工作?
- 10. {$ variable}在PHP中如何工作?
- 11. Leading Zero如何在PHP中工作?
- 12. 如何讓pthreads在PHP中工作?
- 13. 如何讓move_uploaded_files在PHP中工作?
- 14. 在PHP中,include()如何正確工作?
- 15. PHP Casting變量作爲foreach中的對象類型循環
- 16. void casting有什麼作用?
- 17. PHP數組如何工作?
- 18. PHP max_execution_time如何工作?
- 19. PHP IteratorIterator類如何工作?
- 20. PHP如何工作 - 文學
- 21. PHP的`mail`如何工作?
- 22. PHP scandir如何工作?
- 23. php ini_set如何工作?
- 24. PHP-strtotime()如何工作?
- 25. 如何使file_exists工作(Php)?
- 26. 如何在工作中安排工作
- 27. php/mongodb:引用如何在PHP中工作?
- 28. 如何使用PHP中的webhooks工作
- 29. PHP中的fope如何工作?
- 30. php中的filepath如何工作?
我會採取實際嘗試讓你的問題多一點局部的,然後把你的在問題中的例子... – James 2009-12-07 13:41:36
我試圖給它一個去。 – 2009-12-07 13:42:38