本文介绍了如何使用PHP jdmonthname()函数获取完整的月份名称?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图用PHP函数 jdmonthname()从过去的日期获取月份的名称。

I am trying to get the name of the month from a past date using PHP function jdmonthname().

以下是我到目前为止的代码:

Here is the code I have so far:

<?php
$d=gregoriantojd(12,02,2010);
echo jdmonthname($d);
?>

它工作,但它以数字格式返回月份名称。如何获得这个月的全名?

It works but it returns month name in number format. How can I get the full name of the month?

推荐答案

第一个问题是你有一个名为$ d的变量,你正在将
$ jd作为参数传递给函数,第二个是jdmonthname()具有两个参数...现在这是工作代码。

First problem is that you have a variable with name $d and you are passing$jd to the function as parameter and the second is that jdmonthname() takes two parameter... Now this is the working code.

   <?php
   $jd =gregoriantojd(12,02,2010);
   echo jdmonthname($jd,1);
    ?>

这篇关于如何使用PHP jdmonthname()函数获取完整的月份名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 15:52