We can check this by 3 ways. We can cUrl, soap etc extensions. php -m // In command line it will return all enabled extension
Tag: php
How to use curl in php
cURL is a php library and stands for the client Url, with the help of cURL we can send files and download data over http
Dependency Injection In Php
Dependency Injection(DI) is a part of software design. DI is a procedure for managing object dependencies with another object so it will eliminate hard-coding dependencies
HTTP Response Status Codes
HTTP response code shows that a HTTP request has been completed with some codes like 200, 201 etc. We can understand it like when a
Php Show All Errors
We can show all errors and warning in php with ini_set. Write this two lines In index.php or php.ini or main file of your project.
Php Array Function: array_search()
array_search() function will return key of searched value in given array. Example 1 Output: Syntax: array_search(value,array,strict) Parameter and its description value: Required: search value in
Php Array Function: in_array()
If we want to search any value in array then we can use in_array() function. This function will return true or false according to search
Php Array Function: array_push()
When we want to insert element in an array then we can use array_push() function. php array_push() function insert one or more elements to the
Php Oop Access Modifiers
In Php, we use access modifiers with method or function or variables. Access modifiers control where method and properties will be accessible. Access modifiers are