:-) So I do have edited some code I found online to this:
function timeZone_funch( $atts )
{
extract(shortcode_atts(array('timezone' => 'Europe/Berlin'), $atts));
/* Europe/Berlin is default Timezone */
$output = '';
if (in_array($timezone, DateTimeZone::listIdentifiers()))
{
date_default_timezone_set($timezone);
$currentTime = date( 'H:i', strtotime('+30 minutes'));
$output = $currentTime;
}
else {
$output = "Invalid Timezone";
}
return $output;
}
add_shortcode( 'current_time', 'timeZone_funch' );
It works as it should. It displays the timezones hour and minute + adding 30 minutes.
What I want to do now is to make it round up to the nearest quater hour.
Similar to this thread: Round minute down to nearest quarter hour
I also believe that this thread contains my answer BUT due to my lack of knowledge and experience, I'm not able to work the code from the thread above into the code I have right now.
If anybody could show me how I can integrate it, this would be amazing!
Thank you for your time and maybe even your answer!
With kind regards Chris
Finding the correct way to integrate the round up function inside of the code I'am using.
<?php
function timeZone_funch( $atts, $timezone )
{
// extract(shortcode_atts(array('timezone' => 'Europe/Berlin'), $atts));
/* Europe/Berlin is default Timezone */
$output = '';
if (in_array($timezone, DateTimeZone::listIdentifiers()))
{
date_default_timezone_set($timezone);
// Get the time after 30 minutes and round to the closest quarter
$seconds = strtotime('+30 minutes');
$roundedSeconds = round($seconds / (15 * 60)) * (15 * 60);
$currentTime = date( 'H:i', $roundedSeconds );
$output = $currentTime;
}
else {
$output = "Invalid Timezone";
}
return $output;
}
// add_shortcode( 'current_time', 'timeZone_funch' );
echo timeZone_funch(array(), 'Europe/Berlin');
Here is the solution that worked! Thanks again to D.Dimopoulos! :-)
function timeZone_funch( $atts )
{
extract(shortcode_atts(array('timezone' => 'Europe/Berlin'), $atts));
/* Europe/Berlin is default Timezone */
$output = '';
if (in_array($timezone, DateTimeZone::listIdentifiers()))
{
date_default_timezone_set($timezone);
$seconds = strtotime('+30 minutes');
$roundedSeconds = round($seconds / (15 * 60)) * (15 * 60);
$currentTime = date( 'H:i', $roundedSeconds );
$output = $currentTime;
}
else {
$output = "Invalid Timezone";
}
return $output;
}
add_shortcode( 'current_time', 'timeZone_funch' );
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.