Referans bu sembol, PHP Ne anlama geliyor?
Bu nedir?
Bu her şimdi ve sonra sözdizimi PHP hakkında bir soru topluluğudur. Bu da bir Topluluk Wiki, herkes bu listeyi bakımı katılmaya davet etti.
Neden bu?
Sabit operatörler ve diğer sözdizimi simgeleri hakkında sorular bulmak için kullanılır.1
Ana fikir Yığın Taşması mevcut sorular bağlantılar varsa, bize onları, içerik kopyalamak için PHP kılavuzuna başvurmak için daha kolay oldu.
1 Not: 2013, Yığın Taşması Ocak does support special characters. Sadece surround tırnak arama terimleri, [php] "==" vs "==="
ör
Burada ne yapmalıyım?
Eğer böyle bir soru sordum çünkü burada birileri tarafından işaret edilmiş ise, lütfen belirli bir sözdizimi aşağıda bulabilirsiniz. Bağlantılı soru ile birlikte PHP manual bağlantılı sayfalar muhtemelen sorunuza daha sonra cevap verecektir. Eğer öyleyse, cevap upvote için teşvik edilir. Bu liste, diğerlerine sağlanan yardım için bir yedek olarak verilmemiştir.
Liste
Eğer belirli belirteç aşağıda listelenmiştir değilse, List of Parser Tokens içinde bulabilirsiniz.
&
Bitwise Operators ya References
- What does it mean to start a PHP function with an ampersand?
- Understanding PHP & (ampersand, bitwise and) operator
- PHP "&" operator
- difference between & and && in PHP
- What does "&" mean here in PHP?
- what does & mean in this case?
- What does the & sign mean in PHP?
- What does this signature mean(&) in PHP?
- How does "&" operator work in PHP function?
- What does & in &2 mean in PHP?
- When should I use Bitwise operator?
- Is there ever a need to use ampersand in front of an object
=&
References
- Reference assignment operator in php =&
- what do "=&" / "&=" operators in php mean?
- What do the '&=' and '=&' operators do?
- What does =& mean in PHP?
- 'AND' vs '&&' as operator
- difference between & and && in PHP
- PHP: Is there a difference between operators AND and && here?
- PHP - and / or keywords
- What does the percent sign mean in PHP?
- What is the PHP operator % and how to use it in real world examples?
- What is the use of @ symbol in php?
- PHP - 'At' symbol before variable name: @$_POST
- PHP functions and @functions
- Should I use @ in my PHP code?
- What is ?: in PHP 5.3?
- What is the PHP ? : operator called and what does it do?
- ?: operator (the 'Elvis operator') in PHP
- Where can I read about conditionals done with ? and :
- Using PHP 5.3 ?: operator
??
Null Coalesce Operator (PHP beri 7)
:
Alternative syntax for control structures, Ternary Operator
- What do two colons mean in PHP?
- What's the meaning of the PHP Token Name T_PAAMAYIM_NEKUDOTAYIM
- What's the difference between :: (double colon) and -> (arrow) in PHP?
- What exactly are late static bindings in PHP?
- static::staticFunctionName()
- Unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting T_NS_Separator
- What is the "->" PHP operator called and how do you say it when reading code out loud?
- where we use object operator "->" in php
- What's the difference between :: (double colon) and -> (arrow) in PHP?
- What does this PHP syntax mean: $var1->$var2
- Absolutely basic PHP question about the "-> " syntax
=>
Arrays
- What does <<<END mean in PHP?
- PHP <<<EOB
- In PHP, what does "<<<" represent?
- Using <<<CON in PHP
- What's this kind of syntax in PHP?
- php == vs === operator
- How do the PHP equality (== double equals) and identity (=== triple equals) comparison operators differ?
- PHP != and == operators
- The 3 different equals
- PHP Type-Juggling and (strict) Greater/Lesser Than Comparisons
- What does "===" mean?
- php == vs === operator
- How do the PHP equality (== double equals) and identity (=== triple equals) comparison operators differ?
- The 3 different equals
- PHP Type-Juggling and (strict) Greater/Lesser Than Comparisons
- PHP != and == operators
- Is there a difference between !== and != in PHP?
- comparing, !== versus !=
- What is the difference between <> and !=
- php operator <>
- php <> operator
- What is the difference between <> and !=
- PHP Type-Juggling and (strict) Greater/Lesser Than Comparisons
25* Comparison Operators * (beri PHP 7.0)
- What is the difference between the | and || operators?
- What Does Using A Single Pipe '|' In A Function Argument Do?
- What is the difference between the | and || operators?
- PHP - and / or keywords
- What exactly does || mean?
- The behaviour of the or operator in PHP
Arithmetic Operators, Array Operators
Incrementing/Decrementing Operators
<?=
Short Open Tags
[]
Arrays
- PHP arrays... What is/are the meaning(s) of an empty bracket?
- PHP : What is the meaning of []
- Php array_push() vs myArray[]
- What does [] mean when reading from a php array?
- Shorthand for arrays: literal
$var = []
empty array
...
Argument unpacking (beri PHP 5.6)
42* Exponentiation * (beri PHP 5.6)
#
One-line shell-style comment
CEVAP
Incrementing / Decrementing Operators
artırma operatörü
--
eksiltme operatörü
Example Name Effect
---------------------------------------------------------------------
$a Pre-increment Increments $a by one, then returns $a.
$a Post-increment Returns $a, then increments $a by one.
--$a Pre-decrement Decrements $a by one, then returns $a.
$a-- Post-decrement Returns $a, then decrements $a by one.
Bu değişkenin önüne veya arkasına gidebilir.
Eğer değişkenin önüne koyarsanız, arttırma / azaltma işlemi değişken için yapılırilko zaman sonuç verir. Eğer değişken sonra koyarsanız, değişkendirilkdöndü, sonra arttırma / azaltma işlemi yapılır.
Örneğin:
$apples = 10;
for ($i = 0; $i < 10; $i){
echo 'I have ' . $apples-- . " apples. I just ate one.\n";
}
Yukarıdaki durumda $i
daha hızlı olduğu için kullanılır. $i
aynı sonuçlar olurdu.
Ancak, elma sayısı görüntülemek için . $apples--
beri ilk kullanmalısınız ^strong>sonrabu kadar kaldı.
Ayrıca PHP mektuplar artış:
$i = "a";
while ($i < "c"){
echo $i ;
}
z
ulaşıldığında aa
gelecek ve bu böyle devam eder.
Karakter değişkenleri artan ama indirildiği ve bu yüzden sadece düz hatta ASCII karakter olabilir not (a-z ve A-Z) desteklenmektedir.
Yığın Taşması Mesajlar:
Bu sembol, JavaScript ne anlama geliyo...
Referans - bu hata PHP Ne anlama geliy...
Java seçeneği-Xmx ne anlama geliyor?...
&; Atom" quot; programlama ne anla...
&; Acil modu" quot; OpenGL ne anla...