About 11,400,000 results
Open links in new tab
  1. PHP short-ternary ("Elvis") operator vs null coalescing operator

    Can someone explain the differences between ternary operator shorthand (?:) and null coalescing operator (??) in PHP? When do they behave differently and when in the same way (if that …

  2. What does the .= operator mean in PHP? - Stack Overflow

    Feb 13, 2013 · What does the .= operator mean in PHP? Asked 12 years, 4 months ago Modified 5 years, 5 months ago Viewed 64k times

  3. syntax - What does "->" or "=>" mean in PHP? - Stack Overflow

    Dec 26, 2012 · since PHP 7.4 => operator is also used for the arrow functions, a more concise syntax for anonymous functions. since PHP 8.0 => operator is also used to define hands in the …

  4. Start learning PHP — Useful resources for beginners and advanced

    Oct 28, 2023 · Start learning PHP — Useful resources for beginners and advanced! If you're wondering where to start from learning the PHP language or needing some more knowledge …

  5. syntax - What does '<?=' mean in PHP? - Stack Overflow

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

  6. What's the difference between :: (double colon) and -> (arrow) in …

    Jul 4, 2010 · The difference between static and instantiated methods and properties seem to be one of the biggest obstacles to those just starting out with OOP PHP in PHP 5. The double …

  7. How do the PHP equality (== double equals) and identity

    PHP Double Equals == equality chart: PHP Triple Equals === Equality chart: Source code to create these images: PHP equality charts Guru Meditation Those who wish to keep their …

  8. What is the difference between .= and += in PHP? - Stack Overflow

    Jan 9, 2016 · What is the difference between .= and += in PHP? Asked 15 years, 4 months ago Modified 9 years, 4 months ago Viewed 34k times

  9. Reference assignment operator in PHP, =& - Stack Overflow

    Nov 20, 2009 · The PHP manual has a section titled References Explained which every PHP programmer should read. It's important to understand that references in PHP are not a data …

  10. PHP 8.2 Dynamic Properties Deprecated: how to use them anyway …

    Jan 3, 2023 · Now, while this is generally a bad OO practice to have public/dynamic properties in a Class, this question is not about the best OO practice but instead, how to make actual code …