本文介绍了如何将日期时间对象转换为可数变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
$Jahr = date('Y');
$zahl = date('n');
if (isset($_GET['vor']))
{
echo $datum = hallo;
echo $zahl = $zahl ++;
}
else
{
if (isset($_GET['zurück']))
{
echo $datum = hallo2;
}
else
{
echo $datum = $monate[$monat]. " ". $Jahr;
}
}
现在,$ zahl始终为8(每月8月).我想我必须将其转换为count
now the $zahl is always 8 (month august). I think I have to convert it to a string for count
推荐答案
这篇关于如何将日期时间对象转换为可数变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!