About 7,600,000 results
Open links in new tab
  1. What are the differences in die () and exit () in PHP?

    Nov 25, 2009 · The manual doesn't explain why there's exit () and die (). In general, PHP has a lot of weird redundancy like this - it tries to be friendly to people who come from different language …

  2. How to get URL of current page in PHP - Stack Overflow

    In PHP, how can I get the URL of the current page? Preferably just the parts after http://domain.example.

  3. How install and configure manually php and apache?

    For example, let's have Apache parse .php files as PHP. Instead of only using the Apache AddType directive, we want to avoid potentially dangerous uploads and created files such as exploit.php.jpg …

  4. How to get the full PHP documentation offline - Stack Overflow

    For example: I was searching for PDO syntaxes with MySQL Support, but that is not included in the package. I also tried PHPfi, but it seems to use the same data as the official offline PHP …

  5. PHP installation on windows - Stack Overflow

    Mar 1, 2011 · Fantastic description of what needs to be done to get PHP running on iis, the php manual still points at an MSI file but there's not one available on the download page.

  6. mysql - How do I save PHP session data to a database instead of in the ...

    Perhaps previous versions of PHP had a slightly different method (probably <5.4). The session class methods must return the values set out by the PHP manual. Again, probably inherited from pre-5.4 …

  7. PHP: What is the difference between exit(), die() and return; within ...

    The manual doesn't explain why there's exit () and die (). In general, PHP has a lot of weird redundancy like this - it tries to be friendly to people who come from different language backgrounds, but while …

  8. How do I log errors and warnings into a file? - Stack Overflow

    Nov 24, 2019 · How do I turn on all error and warnings and log them to a file, but to set up all of that within the script (not changing anything in php.ini)? I want to define a file name and so that all errors …

  9. What is cURL in PHP? - Stack Overflow

    Jun 17, 2010 · The curl_exec command in PHP is a bridge to use curl from console. curl_exec makes it easy to quickly and easily do GET/POST requests, receive responses from other servers like JSON …

  10. How do you set up use HttpOnly cookies in PHP - Stack Overflow

    Aug 31, 2008 · For PHP's own session cookie (PHPSESSID, by default), see @richie's answer The setcookie() and setrawcookie() functions, introduced the boolean httponly parameter, back in the …