Create time slots with passing date time in PHP
Create time slots by passing start and end time with php. method accepts three parameters startTime, endTime and duration. slots
Read moreCreate time slots by passing start and end time with php. method accepts three parameters startTime, endTime and duration. slots
Read moreCreate .htacess file in root directory of project. mkdir .htaccess open the .htaccess file and add below line Options -Indexes
Read morePHP used two method for Set and Get the timezone. date_default_timezone_set() and date_default_timezone_get(). While you using date_default_timezone_set() method , its accepting one
Read moreIf you getting issue “Only variables should be passed by reference” it comes because you are using direct value from
Read moreBy default file upload size id 2MB in php.ini file but you can increase it in php.ini file or .htaccess
Read moreYou can use one of these get_site_url(); or site_url();
Read moreIt’s very easy to get list of Timezone in php. Just calling the one line of code and it’s return
Read moreYou can remove file extension in PHP using regex $filename = ‘doxument_file.ppt’; $withoutExt = preg_replace(‘/\\.[^.\\s]{3,4}$/’, ”, $filename); echo $withoutExt; //
Read moreYou can no longer set at_period_end in the subscription DELETE endpoints. The DELETE endpoint is reserved for immediate canceling going
Read moreTo get minimum value from array we used min() $dollar = array(‘9.22’, ‘5.32’, ‘102.58’); echo min($dollar); result : 5.32 echo
Read more