我想在使用 nl2br 时忽略以下标签。我有标准的 pre,还有一些特定的 pre 标签。当我这样做时,会将标签贴<br>
在标签内<pre>
。
string = "Here is some text
<pre>
<xml>
<item></item>
<name></name>
</xml>
</pre>
That includes new lines and carriage returns
what can i do to add <p> and <br> tags but not to the text below inside
the <pre> tags </pre>.
<pre class="brush: csharp; title: ;" title="">
public MainPage()
{
// select the culture (de, it, fr, tr are supported)
var ci = new System.Globalization.CultureInfo("tr-TR"); // de-DE etc
// this controls the UI strings
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
// this controls number and date formatting (optional in this sample)
//System.Threading.Thread.CurrentThread.CurrentCulture = ci;
// initialize the component<br>
InitializeComponent();
}
</pre>";
退回这个
echo nl2br($string);
Here is some text
<br /><br />
<pre>
<xml>
<item></item>
<name></name>
</xml>
</pre>
<br /><br />
That includes new lines and carriage returns<br />
what can i do to add <p> and <br> tags but not to the text below inside<br />
the <pre> tags </pre>.<br />
<br />
<pre class="brush: csharp; title: ;" title="">
<br>
public MainPage()
{
// select the culture (de, it, fr, tr are supported)
var ci = new System.Globalization.CultureInfo("tr-TR"); // de-DE etc
// this controls the UI strings
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
// this controls number and date formatting (optional in this sample)
//System.Threading.Thread.CurrentThread.CurrentCulture = ci;
// initialize the component<br>
InitializeComponent();
}
</pre>
似乎忽略了有两个<br><br>
标签。我认为这可能与评论有关。
使用此代码。
function my_nl2br($string){
$string = str_replace("\n", "<br />", $string);
if(preg_match_all('/\<pre class="brush: csharp; title: ;"\>(.*?)\<\/pre\>/', $string, $match)){
foreach($match as $a){
foreach($a as $b){
$string = str_replace('<pre class="brush: csharp; title: ;">'.$b.'</pre>','<pre class="brush: csharp; title: ;">'.str_replace("<br />", "\n", $b)."</pre>", $string);
}
}
}
return $string;
}
echo my_nl2br($description);
但它忽略了该部分中的回车<pre class="brush: csharp; title: ;" title="">
。
输出这个
public MainPage()
{
// select the culture (de, it, fr, tr are supported)
var ci = new System.Globalization.CultureInfo("tr-TR"); // de-DE etc
// this controls the UI strings
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
// this controls number and date formatting (optional in this sample)
//System.Threading.Thread.CurrentThread.CurrentCulture = ci;
// initialize the component
InitializeComponent();
}