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

    594 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 even …

  2. What is the use of the @ symbol in PHP? - Stack Overflow

    Jun 23, 2009 · I have seen uses of @ in front of certain functions, like the following: $fileHandle = @fopen($fileName, $writeAttributes); What is the use of this symbol?

  3. 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 to deep dive into …

  4. Newest 'php' Questions - Stack Overflow

    4 days ago · PHP is a widely used, open source, general-purpose, multi-paradigm, dynamically typed and interpreted scripting language designed initially for server-side web development.

  5. Format code command for PHP/HTML in Visual Studio Code

    Jun 13, 2020 · Is it possible to get Visual Studio Code to format mixed HTML and PHP code on Windows Visual Studio Code version 0.7.1?

  6. php - Change the maximum upload file size - Stack Overflow

    The upload_max_filesize and the post_max_size settings in the php.ini need to changed to support larger files than the php default allowed size. set upload_max_filesize to the maximum size of file …

  7. How to redirect to another page using PHP - Stack Overflow

    Feb 2, 2011 · I'm building a website which includes a login page. I need to redirect the user to their profile page once they've logged in successfully, but I don't know how to do that in PHP (It's my first …

  8. Converting an integer to a string in PHP - Stack Overflow

    Jun 24, 2009 · PHP is loosely typed. What was an integer once, can be a string as well, e.g. when you echo it (used in so called string context).

  9. PHP - Failed to open stream : No such file or directory

    Apr 12, 2016 · The following PHP settings in php.ini if set to non-existent directory can also raise PHP Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0

  10. How to convert date to timestamp in PHP? - Stack Overflow

    Sep 22, 2008 · There is a note in the PHP manual for the last parameter of the mktime function: "As of PHP 5.1.0, this parameter became deprecated. As a result, the new timezone handling features …