帮助创建 php 函数

发布于 2024-11-16 18:43:09 字数 389 浏览 0 评论 0原文

我总是发现通过一个特定的示例可以帮助我理解 - 所以我想看看如何将代码转换为我可以反复调用的函数。

此代码从 WordPress 中名为“日期”的自定义字段中读取日期,格式为 YYYYMMDD,并将其显示为完整长度的友好日期(例如“2001 年 1 月 1 日星期一”)。我想将其作为 function.php 文件中的函数移动,这样我就可以从不同的地方调用它,并了解转换是如何发生的。

<?php
$date = get_post_meta($post->ID, 'date', true);
if ($date){
$mydate = "$date";
echo date('l, j F, Y', strtotime($mydate));
}
?>

谢谢!

I always find working through a specific example helps me understand - so I'd like to see how to convert code into a function I can call over and over.

This code reads a date from a custom field in wordpress called 'date' in the format YYYYMMDD and shows it as a full length friendly date (eg 'Monday 1st January 2001'). I's like to move it as a function in function.php file so I can call it from different places, and understand how that conversion happened.

<?php
$date = get_post_meta($post->ID, 'date', true);
if ($date){
$mydate = "$date";
echo date('l, j F, Y', strtotime($mydate));
}
?>

Thanks!

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

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

发布评论

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

评论(1

冷情妓 2024-11-23 18:43:09
function get_wp_date($post){
    $date = get_post_meta($post->ID, 'date', true);
    if ($date){
       $mydate = "$date";
       return date('l, j F, Y', strtotime($mydate));
    }
    return false;
}

然后通过执行以下操作来调用它:

echo get_wp_date($post);

您可能想首先验证它,以确保它不会返回 false

function get_wp_date($post){
    $date = get_post_meta($post->ID, 'date', true);
    if ($date){
       $mydate = "$date";
       return date('l, j F, Y', strtotime($mydate));
    }
    return false;
}

Then call it by doing:

echo get_wp_date($post);

You might want to validate it 1st so you make sure it does not return false

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文