
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
185 Views
To merge two arrays keeping original keys in PHP, the code is as follows−Example Live DemoOutputThis will produce the following output−array(8) { ["p"]=> string(3) "150" ["q"]=> string(3) "100" ["r"]=> string(3) "120" ["s"]=> string(3) "110" ["t"]=> string(3) "115" ["u"]=> string(3) "103" ["v"]=> string(3) "105" ... Read More

AmitDiwan
447 Views
To convert an object to associative array in PHP, the code is as follows−Example Live DemoOutputThis will produce the following output−Before conversion: object(department)#1 (2) { ["deptname"]=> string(9) "Marketing" ["deptzone"]=> string(5) "South" } After conversion: array(2) { ["deptname"]=> string(9) "Marketing" ["deptzone"]=> string(5) "South" }ExampleLet ... Read More

AmitDiwan
136 Views
To change date format in PHP, the code is as follows−Example Live DemoOutputThis will produce the following output−Displaying date... Date = 2019-11-11 05:25 PM Displaying updated date... 2019-12-01 17:25ExampleLet us now see another example− Live DemoOutputThis will produce the following output−Displaying date... 2019/11/11 00:00:00

AmitDiwan
321 Views
To add an item at the beginning of the associative array, the code is as follows−Example Live DemoOutputThis will produce the following output−Initial Array... Array( [p] => 150 [q] => 100 [r] => 120 [s] => 110 [t] => 115 [u] => 103 [v] ... Read More

AmitDiwan
480 Views
In the Double not operator (!!), the first not i.e. ! is used to negate a value, whereas the second not i.e.! again negates. To implement Double not operator in PHP, the code is as follows−Example Live DemoOutputThis will produce the following output−Value = 0.1 Double Negated Value = 1ExampleLet us ... Read More

AmitDiwan
277 Views
To convert a string into a number, the code is as follows−Example Live DemoOutputThis will produce the following output−Number (Converted from String) = 150ExampleLet us now see another example− Live DemoOutputThis will produce the following output−String = 100.56 Number (Converted from String) = 100.56

AmitDiwan
3K+ Views
To convert number to month name in PHP, the code is as follows−Example Live DemoOutputThis will produce the following output−Displaying date... Date = 2019-11-11 Month = November Displaying updated date... 2019-12-01ExampleLet us now see another example − Live DemoOutputThis will produce the following output −Displaying date... Date = 2019-11-11 Month = November ... Read More

AmitDiwan
2K+ Views
To create a comma-separated list from an array in PHP, the code is as follows−Example Live DemoOutputThis will produce the following output−Array with leading and trailing whitespaces... Value = John Value = Jacob Value = Tom Value = Tim Comma separated list... John , Jacob , Tom , Tim Updated ... Read More