Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Drupal 使用各种技术来确保网站安全。但是有什么错误,在编程时会使drupal变弱,这样我就可以在编写自定义模块或制作.tpl文件时避免它们。
我不确定是否有所有错误的列表,但这里列出了正确的操作列表,其中包括一些错误:
你可能会犯很多错误,但我最喜欢的错误之一是:
$global user; if ($user->uid = 1) { //do some magic }
代替
$global user; if ($user->uid == 1) { //do some magic }