jqGridPHP:jqGridRender 类 >设置Col属性> “editoptions”=>array(“value”=>$datetime)>如何格式化 $datetime php 变量?

发布于 2024-09-06 08:15:18 字数 539 浏览 4 评论 0原文

在 php 文件中,我使用 jqGridRender 类来构建和管理网格。

为了在我的 SQL 表中添加新项目,我使用(除其他外)名为 $start 的 php 变量。这个变量是已知的,它属于我要添加的这个新项目的主键。它在表中的类型是 DATETIME,其值为“2010-06-16 06:00:00”

  • 如何格式化以下行中的 $start 变量?

    $grid->setColProperty("start", array("hidden"=>true,"editoptions"=>array("value"=> $start),"editrules"=> ;数组(“必需”=> true)));
    

事实上,当我将它用作上面的行时,$start等于“2010-06-16 06:00:00”在表中变为“2021-12-01 06:00:00” 。

请问该怎么办?

问候, 资格

In a php file, i use the jqGridRender Class to build and manage a grid.

To add a new item in my SQL table, i use (among others things) a php variable named $start. This variable is known, it belong to the PRIMARY KEY of this new item i want to add. Its type in the table is DATETIME and its value is "2010-06-16 06:00:00"

  • How to format $start variable in the followsing line ?

    $grid->setColProperty("start", array("hidden"=>true,"editoptions"=>array("value"=> $start),"editrules"=>array("required"=>true)));
    

In fact, when i use it as the above line,$startequals "2010-06-16 06:00:00" becomes "2021-12-01 06:00:00" in the table.

What to do, please ?

Regards, Qualliarys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-09-13 08:15:18

这是回应!

我只需要添加以下行代码:

 // Set a new user datetime format using PHP convensions
 $grid->setUserTime('Y-m-d H:i:s');

Here is the response !

I just need to add this following line code :

 // Set a new user datetime format using PHP convensions
 $grid->setUserTime('Y-m-d H:i:s');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文