有谁能告诉我如何删除动态生成路径中的换行符?
参见下面给出的例子;
我正在使用此代码在href中生成动态路径。
$text = trim('<?php echo SITE_ROOT; ?>' . '/') . $currentProjectName . $defaultCssDir . $filename;
HTML输出:
<link href="<?php echo SITE_ROOT; ?>
/sample-2/public/styles/style.css" rel="stylesheet" type="text/css" />
但我想要这种风格的输出:
<link href="<?php echo SITE_ROOT; ?>/sample-2/public/styles/style.css" rel="stylesheet" type="text/css" />
提前致谢!
SMAC
答案 0 :(得分:0)
当print
或echo
$text
变量时,请尝试此操作:
echo str_replace(PHP_EOL, '', $text);