用于url设置的php连接。怎么做?

时间:2013-10-22 14:31:18

标签: javascript php

这是

的php设置
echo '<a href="javascript:delpost(' . $row['postID'] . ',' . $row['postTitle']. ')">Delete</a>';

将显示

javascript:delpost(5, article name)

我如何正确地将其连接到显示

javascript:delpost("5, article name")

有人可以解释我这样做的方式以及你需要添加什么来实现这个目标吗?

1 个答案:

答案 0 :(得分:1)

使用sprintf()

echo sprintf('<a href="javascript:delpost(\'%d, %s\')">Delete</a>', 
    $row['postID'], $row['postTitle']);

这会输出类似:

<a href="javascript:delpost('42, Some Title')">Delete</a>