将 URL 中的空格替换为短划线
2022-08-30 17:23:47
我设法替换了特殊字符,例如: ;/ 等在我的URL中,但现在它又有了空格。这是我的代码:
<h3><a href="<?php echo (isset($row_getDisplay['post_id']) ? $row_getDisplay['post_id'] : ''); ?>_<?php echo str_replace(array(':', '\\', '/', '*'), ' ', urldecode($row_getDisplay['title'])); ?>.html" ><?php echo (isset($row_getDisplay['title']) ? $row_getDisplay['title'] : ''); ?></a></h3>
我希望它喜欢删除特殊字符以及用破折号替换空格。