This code will help you upload image to server which I have uploaded on ” “http://seoforworld.com/api/v1/file-upload.php” For using this code create a page with the name file-upload.php.Also, create a directory with name of images Copy this code in file-upload.php Image…
Category: Php
What are Laravel View Composer?
Sometimes we need to pass similar type of data to different view files or partials and later changing them is a pain point as you have to change every single one of them, hence to fix this issue view composers…
How to get CLI Input in PHP?
Php Uses I/O Stream To Get input. So to get a input from user in cli. You can run the php file by opening your CMD in a Windows machine or Terminal in Linux based machine And Getting to the…
How to add Helper file in Laravel?
To create custom helpers.php file in laravel we need to edit composer.json file in laravel. In autoload object add the following file array:- After adding this we need to run the following command Make sure composer is installed. This will…
How To pass infinite argument in PHP function?
There are many ways to pass undefined no of arguments in a function. Mostly I use one of these three ways:- Pass all the Argument in the form of an array Use func_get_args () to get all the passed argument…
What is Anonymous function or Closure in Php?
These are the function with no defined function. Mostly used for callback. These are accessed by the variables on which they are defined or invoked dynamically.
How to use multiple where condition in Laravel?
You can add where clause to a model like ->where(/*condition*/) Sometimes We need to add orWhere condition to our queries, between two cases. This might interfere with other conditions so we need to pass them in a function. To get…
How to get IP Address of User in PHP?
Php uses Global Variables (Superglobals) called $_SERVER to get the Header, Path, and Script Location. REMOTE_ADDR has the Ip address of the user on the current page.
What References Do in PHP (&)?
Makes Two variables refer to the same content. Hence, If you change one Other will too.