
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
4K+ Views
The fopen, fread and fwrite functions can be used to open a file stream, read a data stream and write that data to a file respectively.The file resource doesn't necessarily need to point to a location on the local machine itself.Below is an example that transfers a file from the ... Read More

AmitDiwan
295 Views
Constants in PHP are defined using the 'define' function. They are fairly slow in PHP.There are instances where extensions (such as hidef) were written to improve the performance of the code.This comes into picture when there are thousands of constants.Beginning from PHP version 5.3, compile-time constants with the help of ... Read More

AmitDiwan
655 Views
Serialize is better in comparison to JSON to store PHP variables.The var_export can be used to save config file, and 'include' can be used to load the config file information.This is an easy way to save config data programmatically and easier to read/write. Below is a sample code for the ... Read More

AmitDiwan
573 Views
The reply and return path can be placed in the headers as shown below −$headers = 'From: sample@example.com' . "\r" . 'Reply-To: sample@example.com' . "\r" . 'Return-Path: sample@example.com'Otherwise, it can be passed as the fifth parameter to change the return path −mail($to, $subject, $message, $headers, "-f email@wherever.com");Here, 'email@wherever.com' has to ... Read More

AmitDiwan
306 Views
The below lines of code can be added to the /etc/phpmyadmin/config.inc.php file at the bottom −$i++; $cfg['Servers'][$i]['host'] = 'HostName:port'; // hostname and port are provided if they are not default values $cfg['Servers'][$i]['user'] = 'userName'; //user name for the remote server $cfg['Servers'][$i]['password'] = 'Password'; //the password $cfg['Servers'][$i]['auth_type'] = ... Read More

AmitDiwan
369 Views
PHP SOAP has been made available beginning from PHP version 5.0.1 . Users who are still using PHP4 need to use NuSOAP.Native PHP codes are better in terms of performance & relatively bug free. Hence it is suggested to use PHP SOAP if it is available.On the other hand, NuSOAP ... Read More

AmitDiwan
24K+ Views
The __DIR__ can be used to obtain the current code working directory. It has been introduced in PHP beginning from version 5.3. It is similar to using dirname(__FILE__). Usually, it is used to include other files that is present in an included file.Consider the following directory structure −A directory called ... Read More

AmitDiwan
1K+ Views
The mutator methods can be used to chain methods, wherein these methods return the original objects, and other methods can be called on these objects that are returned by the mutator functions.ExampleBelow is a simple example demonstrating the same − Live Demo

AmitDiwan
427 Views
The addcslashes function can be used. Below is the syntax of the function −string addcslashes ( string $str, string $charlist )This function returns a string with backslashes that appear before the characters. Below is a demonstration of the function.Example Live DemoOutputThis will produce the following output −\s\a\m\p\l\e\[ \]Read More

AmitDiwan
314 Views
The reason behind in_array returning True could be the string-to-number conversion. When a string is passed to the function, it returns 0, which is the value that needs to be searched for.PHP uses loose juggling, i.e. using == instead of === when elements are compared. Hence, their values are compared ... Read More