gpt4 book ai didi

php - 这个 PHP 有什么问题?

转载 作者:行者123 更新时间:2023-12-02 07:47:20 24 4
gpt4 key购买 nike

我收到此语法错误:解析错误:语法错误,意外的 T_STRING,需要“,”或“;”在第 18 行 this page .

我认为问题可能出在“首次发布”行上。有什么建议吗?

谢谢 - 塔拉

<?php 
$days = round((date('U') - get_the_time('U')) / (60*60*24));
if ($days==0) {
echo "Published today |";
}
elseif ($days==1) {
echo "Published yesterday |";
}
else {
echo "First published " the_time('F - j - Y') " |";
}
?>
&nbsp;Last updated at <?php the_time('g:i a'); ?> on <?php the_time('l, F jS, Y') ?> by <?php the_author(); ?>

最佳答案

您的问题是:

echo "First published " the_time('F - j - Y') " |";

建议连接的其他答案都是错误的。 WordPress 中的 the_time() 会回显,因此您需要将其拆分为多个调用:

echo "First published ";
the_time('F - j - Y');
echo " |";

或者,连接但使用 get_the_time():

echo "First published " . get_the_time('F - j - Y') . " |";

关于php - 这个 PHP 有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6018763/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com