如何在 PHP 中创建日历?
如何在 PHP 中创建日历?
今天应该用粗体。怎么可能编码呢?
How can I create a calendar in PHP?
Today should be in bold. How could it be coded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 PHP 中创建日历?
今天应该用粗体。怎么可能编码呢?
How can I create a calendar in PHP?
Today should be in bold. How could it be coded?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以尝试dhtml Calendar,或者Yahoo UI 的日历。
You can try dhtml Calendar, or maybe Yahoo UI's Calendar.
PHP: date 应该为您提供所需的一切。
然后,格式化表格中的所有内容。
PHP: date should give you everything you need.
Then, format everything in a table.
首先,从捕获您的需求开始(它是否应该处理月份浏览,是否应该一次显示一周,等等) - 这应该让您导出某种功能规范,这应该在实际编写组件/页面/时指导您应用
Firstly, start by capturing your requirements (should it handle month browsing, should it show a week at a time, etc.) - this should let you derive a functional spec of sorts, which should guide you when actually writing the component/page/application
如果您的意思是:“如何通过 PHP 在网页上显示日期选择器”,答案是使用一些默认的 JavaScript 库。例如 Dojo 或 jQuery。
If you mean: "how to show a date picker on your web page from PHP", the answer is to use some default JavaScript library for it. E.g. Dojo or jQuery.