0
A
回答
3
@
是PHP中的錯誤抑制運算符。
PHP supports one error control operator: the at sign (@).
When prepended to an expression in PHP, any error messages that might be
generated by that expression will be ignored.
編輯:
典型用途包括以下內容:
<?php
// Usage of the @ symbol in PHP code
// Typical Example
$var = @some_function();
// Class/Object Example
$var = @new some_class();
// Does NOT Work!
//$var = new @some_class(); // syntax error
// Another example. Very slow
$var = @$some_var;
?>
參見下面的鏈接:
http://php.net/manual/en/language.operators.errorcontrol.php
0
@不能與沒有$的變量一起使用。這是語法錯誤。
+0
那麼'echo @foo;'實際上會工作並輸出「foo」。只是分配不起作用。 – deceze 2012-03-23 08:26:39
+0
在這種情況下,foo是未定義常量。不是一個變量。它輸出爲字符串和PHP通知。但@壓制它。看起來像只寫。不要在家裏這樣做=) – 2012-03-23 08:59:45
相關問題
- 1. PHP MVC Globals Variables
- 2. RequireJS production/dev variables
- 3. FitNesse Suites Variables
- 4. Rails ENV Variables
- 5. Django Views Incrementing Variables
- 6. SHOW(多個)VARIABLES
- 7. System.Drawing DrawLines with Variables
- 8. Javascript variables math
- 9. ibatis isNotEmpty with multiple variables
- 10. Ansible設置「Magic Variables」
- 11. eval expression with environment variables
- 12. For loop with multiple variables
- 13. Javascript Variables ..和輸出
- 14. Names.Add in VBA using variables
- 15. if statement not reading variables
- 16. chart.Correlation independent vs dependent variables visualization
- 17. SELECT INTO多@variables MySQL的
- 18. jquery weekcalendar resize/drop variables current div
- 19. 結合INSERT SELECT和VARIABLES
- 20. SPSS問題與RENAME VARIABLES
- 21. @variables不工作在css3
- 22. Dynamic Class Variables - locals()vs __metaclass__
- 23. 這是在PHP中使用MySQL @variables的正確方法嗎?
- 24. CDT Eclipse:Undefined Variables甚至包括.h文件
- 25. 使用Django Model的For-Variables列
- 26. 如何找到VARIABLES只有缺失值?
- 27. Test Driven Development with hidden variables and methods in C
- 28. 「TypeError:'int'object is not iterable」with several variables
- 29. get(Object obj)of field not working with instance variables
- 30. C++讀取文件到類variables```
我只能想象這是一個錯字;你能提供一個到相關網頁的鏈接嗎? – sg3s 2012-03-23 08:20:41
這實際上是一個解析錯誤,它不是有效的PHP代碼。 – deceze 2012-03-23 08:23:14
它是Ruby,而不是PHP。 – Gordon 2012-03-23 08:39:05