我需要回应很多PHP和HTML。
我已经尝试过显而易见的事了,但它不起作用:
<?php echo '
<?php if ( has_post_thumbnail() ) { ?>
<div class="gridly-image"><a href="<?php the_permalink() ?>"><?php the_post_thumbnail('summary-image', array('class' => 'overlay', 'title'=> the_title('Read Article ',' now',false) ));?></a>
</div>
<?php } ?>
<div class="date">
<span class="day">
<?php the_time('d') ?></span>
<div class="holder">
<span class="month">
<?php the_time('M') ?></span>
<span class="year">
<?php the_time('Y') ?></span>
</div>
</div>
<?php } ?>';
?>
我该怎么做?
答案 0 :(得分:36)
您不能在类似的字符串中运行PHP代码。它只是不起作用。同样,当你“退出”PHP代码(?>
)时,PHP块之外的任何文本都被视为输出,因此不需要echo
语句。
如果您确实需要使用大量PHP代码进行多行输出,请考虑使用HEREDOC:
<?php
$var = 'Howdy';
echo <<<EOL
This is output
And this is a new line
blah blah blah and this following $var will actually say Howdy as well
and now the output ends
EOL;
答案 1 :(得分:35)
您无需输出php
标记:
<?php
if ( has_post_thumbnail() )
{
echo '<div class="gridly-image"><a href="'. the_permalink() .'">'. the_post_thumbnail('summary-image', array('class' => 'overlay', 'title'=> the_title('Read Article ',' now',false) )) .'</a></div>';
}
echo '<div class="date">
<span class="day">'. the_time('d') .'</span>
<div class="holder">
<span class="month">'. the_time('M') .'</span>
<span class="year">'. the_time('Y') .'</span>
</div>
</div>';
?>
答案 2 :(得分:16)
使用Heredocs输出包含变量的多行字符串。语法是......
$string = <<<HEREDOC
string stuff here
HEREDOC;
“HEREDOC”部分就像引号一样,可以是你想要的任何东西。结束标记必须是它的唯一内容,即之前或之后没有空格,并且必须以冒号结束。有关详细信息check out the manual。
答案 3 :(得分:1)
另一种选择是使用带有冒号的if
和endif
而不是括号:
<?php if ( has_post_thumbnail() ): ?>
<div class="gridly-image">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('summary-image', array('class' => 'overlay', 'title'=> the_title('Read Article ',' now',false) )); ?>
</a>
</div>
<?php endif; ?>
<div class="date">
<span class="day"><?php the_time('d'); ?></span>
<div class="holder">
<span class="month"><?php the_time('M'); ?></span>
<span class="year"><?php the_time('Y'); ?></span>
</div>
</div>
答案 4 :(得分:0)
代码中的内部单引号集将终止字符串。每当你点击一个引号时,它就会结束字符串并继续处理。你会想要这样的东西:
$thisstring = 'this string is long \' in needs escaped single quotes or nothing will run';
答案 5 :(得分:0)
为此,您必须删除字符串中的所有'
个字符或使用转义字符。像:
<?php
echo '<?php
echo \'hello world\';
?>';
?>
答案 6 :(得分:0)
使用PHP的show_source();
功能。请在 show_source 中查看更多详细信息。我猜这是一种更好的方法。