我有以下功能来获取2天之间的天数,不包括周末
SELECT CONCAT(GROUP_CONCAT(t1.keywords),',',GROUP_CONCAT(t2.keywords)) keywords FROM table1 t1, table2 t2
这样可以正常工作,但是如何将返回变为变量以回显/使用?
答案 0 :(得分:2)
您将其保存到某个变量中然后可以将其打印出来:
$workingDays = getWorkingDays("some date", "another date");
echo $workingDays;
或者,如果您只想用它来打印它,您可以省略变量:
echo getWorkingDays("some date", "another date");