如何将php放入html a href

时间:2017-02-01 13:03:13

标签: php

我有这个PHP脚本

$string = substr($stringCut, 0, strrpos($stringCut, ' ')).'... <a href="/this/story">Read More</a>';

我想用

改变一个href ------“/ this / story”----
<a href="clanok/ echo urlencode($row['id']); ?>/ echo createSlug($row['title']); ?>" title="">Read more</a>

我从来没有把HTML标签放在HTML中我总是把它分开(不混合php和html)。

请告诉我混合php和html时href中的''之间的区别。

我想要这样的东西,但这有很多错误:D

$string = substr($stringCut, 0, strrpos($stringCut, ' ')).'... <a href="clanok/ echo urlencode($row['id']); ?>/ echo createSlug($row['title']); ?>" title="">Read More</a>'; 

感谢。

1 个答案:

答案 0 :(得分:1)

您无需使用<?php echo?>

$string = substr($stringCut, 0, strrpos($stringCut, ' '))."... <a href=\"clanok/". urlencode($row['id'])."/".createSlug($row['title'])."\" title=\"\">Read more</a>";

上述内容对您有用。