我有這3個字符串我需要轉換到PHP,所以我可以附和他們。這些字符串對於我來說完全用直接的PHP寫出來有點複雜,所以我想知道是否有人可以給我一個如何執行下面的例子。回聲:類,樣式和PHP
您不必使用我的代碼,如果你不想,只是我如何能呼應這些線條與HTML類,樣式和示例嵌入PHP就足夠了。
這是第一次一個。
原文:
<div class="newsdate" style="margin: 10px 0 !important;"><?= date("F d, Y", strtotime($r['date'])); ?></div>
這是我試過,但在語法感到困惑:
echo "<div class='newsdate' style='margin: 10px 0 !important;'>"."date('F d, Y', strtotime($r[date])).'</div>";
第二屆一個(小更復雜我)
原文:
<div class="articletext"><style>.articletext img{width:100%; height:auto;}</style><?php $string = $r[3];
$max = 300; // or 200, or whatever
if(strlen($string) > $max) {
// find the last space < $max:
$shorter = substr($string, 0, $max+1);
$string = substr($string, 0, strrpos($shorter, ' ')).'...';
}
echo $string;
?></div>
我曾嘗試:
echo "<div class='articletext'>" . "<style>.articletext img{width:100%; height:auto;}</style>';" . "
$string = $r[3];" . "
$max = 300;" . "
if(strlen($string) > $max) {
< $max:
$shorter = substr($string, 0, $max+1);" . "
$string = substr($string, 0, strrpos($shorter, ' ')).'...';" . "
}
$string.'</div>";
第三屆之一。
原始
<div class="btn small green white-tx"><a href="http://<?php echo $_SERVER['SERVER_NAME']; ?>/htp-news.php?id=<?=$r[0] ?>">Continue Reading</a></div>
我曾嘗試:
echo "<div class='btn small green white-tx'>"."
<a href='http://'.$_SERVER['SERVER_NAME'].'/htp-news.php?id='.$r[0].''>"."Continue Reading</a>
</div>"
我感謝所有幫助。
你爲什麼要這麼做?所有的*原*的例子更簡單,更容易閱讀 – Phil
我有一個分頁腳本,需要回顯每一行: 'foreach($行爲$ r) { echo「
你知道你可以在任何時候進出PHP上下文,對吧? <?php foreach($ rows as $ r):?>