If you want to run PHP file from windows command line, it must installed PHP in your windows system. in my system already Wamp server installed so I will show you how to run PHP file with Windows command line. I am assuming that Wampp server is installed in your local system. you need to […]
Tag: PHP
How to compare two dates in PHP?
I am explaining you, how to compare two dates in PHP.Provided two dates (checkdate1 and checkdate2) and the task is to compare the two dates. Comparing two dates in PHP when the two dates are in the same format. we can compare two dates if it is in same format so directly we can check […]
How to get random value from an array PHP
I am explaining you, How to get random value in from an array PHP. we can use the shuffle() function in PHP to randomly shuffle the order of values in an array. Result: Azhar ShaikhHello, Welcome to webdeveloperindia.in. I am a full-stack web developer. Email – [email protected] | Skype – azaruddin23. I have knowledge of […]
How to reindex or remove an index array element in PHP ?
I am explaining you, how to reindex an array element in PHP with examples. we have an array named basicWebsiteInfo[] , we have some website information like website, url. At first, it is indexed correctly as 0,1,2. Result: Now, to understand the reindex array things, at first I am unset it by using the unset() […]
How to check URL is valid or not in PHP
I am explaining you, How to check URL is valid or not in PHP.I am going to explaining, how to check if a URL is valid in PHP using filter_var() function with FILTER_VALIDATE_URL filter. Use the following code to check if the URL is valid or not. Example : Result: Azhar ShaikhHello, Welcome to webdeveloperindia.in. […]
How to Concatenate String in PHP?
I am explaining you, how to concatenate strings in PHP.if you want to concatenate strings, you can use the concatenation operator . Example: Result: Azhar ShaikhHello, Welcome to webdeveloperindia.in. I am a full-stack web developer. Email – [email protected] | Skype – azaruddin23. I have knowledge of PHP, Laravel, Magento 1/2, Codeigniter, WordPress, Joomla, Shopify, Git, […]
how to get month name from date in PHP?
I am explaining you, we will learn how to get the month name from the date in PHP. The PHP provides very useful functions by using it we can easily format the date. Example 1: Extract Month Name From Date In this example, we have used the createFromFormat() function which helps us to provide month […]
How to get image file size in php ?
I am explaining you, If you want to get image file size in php so you can easily get using filesize() in PHP. if you want to get image size then we can find it. It will return size on bytes. Example: Azhar ShaikhHello, Welcome to webdeveloperindia.in. I am a full-stack web developer. Email – […]
How to remove duplicate values from Array in PHP?
I am explaining you, how to remove duplicate values from Array in PHP. it is simple to delete duplicate values from an PHP Array.PHP provide pre-define function array_unique that can remove duplicate values from Array. with the use of pre-define function array_unique() we can get only unique value from array. Example: Result: Azhar ShaikhHello, Welcome […]
Create Directory If It Doesn’t Exist in PHP.
if you want to create folder if not exist. you can understand a concept of php create directory if not exists. I am giving you example of php code to create directory if not exists. I am explaining you, how to create directory if not exist php. In example, we will use is_dir() and mkdir() […]