English 中文(简体)
使用独立母体
原标题:Use of standalone parentheses
  • 时间:2010-05-05 11:43:02
  •  标签:
  • php
  • syntax

我刚才回答了一个问题,即我建议删除发言前后的括号,并询问为什么我没有回答我为什么认为这不会造成错误/警告。 我只能举坏的做法。 但是,也许我会把一个失踪的东西打上一片。

我做了自己的检验:

(print( ! )); // Outputs  ! 
((print( !! ))); // Outputs  !! 
(1); // No output
(qwerty); // No output
(1==2); // No output
(1=2); // Syntax error
// etc...

一个人能够说明什么进展以及什么用途是孤立的家长?

最佳回答

单独使用什么?

所有意图和目的,都不得使用。

至于正在做的事情,他们只是对言论加以限定;他们没有任何特殊或复杂的情况。 您的<代码>(1=2)不可行,其原因与无母体不能工作的原因相同:你可以将价值(<代码>2)分配给一个编号(<代码>1)。

问题回答

如果你在母体内作一个表述,你会得到同样价值的新表述。 如果经营人之前或之后有,则可能需要这样做,否则就没有任何效果。

您的最后一个例子就是一yn一 error子的错误,因为那是一yn子的错误。

1=2

a syntax错误。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签