处理网址中的%22

时间:2014-09-25 20:06:36

标签: php html codeigniter

我有一个页面,它使用输入字段进行搜索,然后使用相同的字段来浏览页面。它还接受双引号进行精确搜索。

网址需要看起来像blahblah.com/search/%22querystuff%22,但它会自动丢失到blahblah.com/search/"querystuff“,但在浏览器中失败了。

有没有办法让它停止这样做,或者我需要研究一种不同的方法。

1 个答案:

答案 0 :(得分:2)

Try out the urlencode method.

以下是如何使用它的示例:

<?php
$userinput = '"Hello world"';
echo '<a href="http://blahblah.com/search/', urlencode($userinput), '">';
?>