Echo için herhangi bir yolu var mı

4 Cevap php

Temel olarak, i <p style="color:FFFFFF"> hatları, ya da belki bir sınıfın boyunca bir şey yankı istiyorum, ama bu ayrıştırıcı gerçekten tırnak içerdiği gerçeğini sevme değil, ve hızlı bir şekilde sitemde yok gibi görünüyor. Ayrıştırıcı kurallar, alternatif olarak daha iyi bir çözüm etrafında almak için herhangi bir hack var mı?

Şerefe.

4 Cevap

echo '<p style="colveya:#000;">test</p>';

veya

echo "<p style=\"colveya:#000;\">test</p>';

and a couple other combinations are possible. The point is that you should take into account what quotes you're using to spit out the entire string, and which quotes are used in the HTML. If you need to use the same ones, " and " you have to escape the inner " veya the parser will think that denotes the end of the string.

Sadece tırnak kaçış:

echo "<p style=\"color:FFFFFF\">";

Siz de olabilir

echo "<p style='color:#FFFFFF'>";

ya da belki de:

echo '<p style="color:#fff">test</p>';