PHP 和标题标签

PHP and title tag

我已经尝试在网上搜索但没有找到解决方案。

如何在 php 代码上添加带有 space 的 'title' 标签?

我有这个:

echo "<li id='".$folder.'/'.$entry."' title=".$entry.">".$entry."</li>

在这个例子中,变量$entry = "Test one two three",但是当我的鼠标悬停在div上时,它只显示我"one",他停在第一个space .

如何显示所有标题?

此致。

问题是缺少单引号:您的 PHP 将输出

<li id='somefoler'/'Test one two three' title=Test one two three>Test one two three</li>

这不是你想要的。尝试

echo "<li id='$folder/$entry' title='$entry'>$entry</li>";