Çıkış kodu OLDUĞU GİBİ

3 Cevap php

add in note i have to paste 3 time the following code in the html body of a static webpage, instead of having to paste it and have a lot of code, i prefer to only have one line (3 times) that call the writing of the code, like this : <?php getgooglepub(); ?>


Ben> tüm <"olduğu gibi" "" çıkışına kodunuzu biçimlendirmek için sıcak ....'' HMTL sayfanın google analitik kodu veya adsense çıkışına bir php fonksiyonu yapmak ister

Burada çıkış örnek kod:

<script type="text/javascript"><!--
google_ad_client = "pub-0743213818925076";
/* 728x90, date de création 11/02/10 */
google_ad_slot = "9774402576";
google_ad_width = 870;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

Yaratıcı cevap rağmen, ben myselft şimdi emin olmak için ... o iş yapmak mümkün beeing bulundu, Not, benim fautl .... i kopyalayıp yapıştırın kodu, emin, sen bayrak sorunu olacak, ben beri hiçbir ipucu! ..

function getgooglepub()
{$google_code = <<<EOT

<script type="text/javascript"><!--
google_ad_client = "pub-0743213818925076";
/* 728x90, date de création 11/02/10 */
google_ad_slot = "9774402576";
google_ad_width = 870;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

EOT;

echo htmlspecialchars($google_code);}

html kodu bundan sonra çağrı var

<?php getgooglepub(); ?>

Bu sayfa kaynak kodu firefox render olduğunu ... abviousely çalışmıyor

&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-0743213818925076&quot;;
/* 728x90, date de création 11/02/10 */
google_ad_slot = &quot;9774402576&quot;;
google_ad_width = 870;
google_ad_height = 90;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;

&lt;/script&gt;

i [veri] etiketi ile ilgili bir yerde okudum? .... belki bunu yapmak için bir yolu var mı?

3 Cevap

Cevap hakkı olduğunu ve bunu istediğim şekilde yapmaz "olduğu gibi" baskı kodu yapmak gibi. Belki ben bunu doğru şekilde açıklamak zorunda değilsin. Yani ben bir çözüm bulduk. Ben kodu ile harici bir php dosyası kullanmak, ve bundan sonra ana dosyada ben dahil kullanın. bu şekilde sadece ben olarak birçok kez tekrar edebilir bir kod var, yine de teşekkürler!

Eğer çıkış istiyorsan bazı HTML kodu (and see the actual HTML code without having it interpreted), hem bir combinaison kullanabilirsiniz:

  • <pre> etiketleri, böylece orinal kod sunum tutulur; yani linebreaks ve çoklu-boşluk tarayıcı tarafından göz ardı edilmez
  • ve bu htmlspecialchars , so <, >, & ve tırnak gibi bir işlev kaçtı - böylece aree tarayıcı tarafından yorumlanır değil.

Örneğin:

$str = <<<HTML
<script type="text/javascript"><!--
google_ad_client = "pub-0743213818925076";
/* 728x90, date de création 11/02/10 */
google_ad_slot = "9774402576";
google_ad_width = 870;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
HTML;

echo '<pre>';
echo htmlspecialchars($str);
echo '</pre>';
die;

Bu tarayıcı tarafından yorumlanır olmadan, HTML kodunu görüntülemek konuşulmalıdır.