Promote your website, share article links, videos, packages and code examples Join now

PHP Articles

How To Convert PHP Array To JSON Object
In this example I will show you how to convert PHP array to JSON object, We will convert php array into json string using json_encode()...
By : Techsolutionstuff Category : PHP Date : 1 year ago
CRUD Operation In PHP
Hello All, In this tutorial i will show you how to create CRUD operation with login-logout in php.So if you are newcomer in devloping or...
By : Websolutionstuff Category : PHP Date : 1 year ago
How to parse and process XML data in PHP
Sometimes working with 3rd party API, you may get response in the xml format instead of json. XML is a extensible markup language like HTML....
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to delete an element from an array in PHP
While working with PHP array, you may want to remove few elements from an array. PHP has huge variety of array functions by which you can do...
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to get the client IP address in PHP
If your project is in Laravel framework, Laravel's \Request::ip() or $request->ip() always returns the load balancer's IP. The easiest wa...
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to find request type in php
When working with external services, like API, we need to debug request type from external URL. Sometimes debugging in Javascript also need...
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to catch cURL errors in php
While working with API request using PHP cURL request, you might get null response in curl request. This is because your cURL request failed...
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to Remove Duplicate Value From Array in PHP?
In this article, i will share with you how to remove duplicate values from an array in PHP using the array_unique() example.here I will shar...
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to Get File Name List from Folder In php?
In this article, I will share with you how to get a file name list from the folder using PHP with some simple examples.Sometimes you need to...
By : Jitesh Meniya Category : PHP Date : 1 year ago
How to check if a string is a valid URL in PHP
When I was working with one Payment gateway, the gateway was simply returning URL string. To complete the transaction, I have to redirect th...
By : Jitesh Meniya Category : PHP Date : 1 year ago