ホームページ  >  記事  >  バックエンド開発  >  CSS コードを PHP 変数に追加します。

CSS コードを PHP 変数に追加します。

WBOY
WBOYオリジナル
2016-06-23 14:15:281170ブラウズ

#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }#scrollnews_con_1 { width:645px; overflow:hidden; }#scrolling_1 ul { display:block; height:240px; width:645px; }#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }这个我想给PHP变量付值后输出。<?for (i=0 ;i=100; i++) {echo "#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }";#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }#scrollnews_con_1 { width:645px; overflow:hidden; }#scrolling_1 ul { display:block; height:240px; width:645px; }#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }}?>这么写了以后,不正常了。我该怎么写呢?


ディスカッションに返信 (解決策)

for (i=0;i=100;i++) {
ループの書き方が間違っています

変数の前に $
を追加する必要があります、つまり
for ($i=0;$ i=100; $i++) {

あはは、
上記のコードは間違っています。
また書きました。

#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }#scrollnews_con_1 { width:645px; overflow:hidden; }#scrolling_1 ul { display:block; height:240px; width:645px; }#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }这个我想给PHP变量付值后输出。<?for ($i=0 ;$i<=100; $i++) {echo "#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }";#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }#scrollnews_con_1 { width:645px; overflow:hidden; }#scrolling_1 ul { display:block; height:240px; width:645px; }#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; } }?>这么写了以后,不正常了。我该怎么写呢?

echo "****引用符の位置が間違っています?? $i は使用されていません。同じスタイルを 100 個出力しますか?

はは、
上記のコードは間違っています。
もう一度書きました。

#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }#scrollnews_con_1 { width:645px; overflow:hidden; }#scrolling_1 ul { display:block; height:240px; width:645px; }#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }这个我想给PHP变量付值后输出。<?for ($i=0 ;$i<=100; $i++) {echo "#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }";#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }#scrollnews_con_1 { width:645px; overflow:hidden; }#scrolling_1 ul { display:block; height:240px; width:645px; }#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; } }?>这么写了以后,不正常了。我该怎么写呢?

以下の内容を内部に直接記述します
二重引用符は必要ありません

2 回目にループするときに再度使用するにはどうすればよいですか

同じスタイルを繰り返し出力するあなたが何をしたいのか分かりません、まず問題を明確にしましょう

rree

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。