Questions tagged [php-5.6]

PHP 5.6 was the successor to PHP 5.5. It was released on August 24, 2014 and reached end-of-life on December 31, 2018. Use this tag for version-specific issues relating to specifically to PHP 5.6.

PHP 5.6.0 came with new features such as (incomplete list):

  • Constant scalar expressions
  • Variadic functions
  • Argument unpacking
  • Support for large(>2GiB) file uploads
  • SSL/TLS improvements
  • New command line debugger called phpdbg

See Migrating from PHP 5.5.x to PHP 5.6.x for more information.

Information

  • If you want to talk about PHP or if you have a question, you can come to Chat Room 11: PHP.
  • For global question on PHP, please use the generic tag:
857 questions
-5
votes
1 answer

Get next five saturday date of the last month

I need next 5 saturday from the last month. eg. current date is 07-04-2018 so I need 5 saturday of the last month. output- 03-03-18, 10-03-18, 17-03-18, 24-03-18, 31-03-18. I can get it by using below but this is completely hardcoded. How can i…
-11
votes
1 answer

PHP: How to separate dot notation keys into array with key prefix

Hello I want to convert this type of array [ "Continent.0.name" => "Europe", "Continent.0.value" => 25, "Continent.1.name" => "Asia", "Continent.1.value" => 4.17, "Total" => 190 ] into [ 'continent' => [ 'Europe' => 25 'Asia' =>…
Shahid
  • 185
  • 1
  • 12
1 2 3
57
58