帮助创建 php 函数
我总是发现通过一个特定的示例可以帮助我理解 - 所以我想看看如何将代码转换为我可以反复调用的函数。
此代码从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然后通过执行以下操作来调用它:
您可能想首先验证它,以确保它不会返回
false
Then call it by doing:
You might want to validate it 1st so you make sure it does not return
false