Jump to content
  • 0

Как запустить цикл foreach внутри printf, которая также выводится в цикле foreach?


Torawhite
 Share

Question

Здравствуйте!

Необходимо запустить вывод тегов (отдельных слов) внутри printf(). Теги хранятся в отдельной ячейке и разделены "/".

 

Так идёт вывод сейчас:

foreach ($pages AS $page) { printf(" <div class='article_block'> <a href='/view_article.php?id=%s' target='_self' title='%s' class='pre_img'><img src='%s' width='640'></a> <div class='tags_block'>%s</div> <div class='article_block_name'> <p><a href='/magazine/male_articles/view_article.php?id=%s' target='_self'>%s</a></p></div></div>", $page["id"], $page["title"], $page["article_img"], $page["tags"], $page["id"], $page["title"]); }

Нужно в <div class='tags_block'>%s</div> вместо "%s" выводить каждое слово тега в теге <a href"..." class="..."></a> через explode()

Edited by Torawhite
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

foreach ($pages as $page) {	echo '	<div class='article_block'> 		<a href='/view_article.php?id='.$page['id'].'' target='_self' title=''.$page['title'].'' class='pre_img'>			<img src=''.$page['article_img'].'' width='640'>		</a>		<div class='tags_block'>'.$page['tags'].'</div> 		<div class='article_block_name'>			<p><a href='/magazine/male_articles/view_article.php?id='.$page['id'].'' target='_self'>'.$page['title'].'</a></p>		</div>	</div>';}
У вас в шаблоне %s встречается 5 раз, а параметров передано 6.

да нет, там 6 передано )

Link to comment
Share on other sites

  • 0

У вас в шаблоне %s встречается 5 раз, а параметров передано 6.

Проблема-то не в этом)

foreach ($pages as $page) {	echo '	<div class='article_block'> 		<a href='/view_article.php?id='.$page['id'].'' target='_self' title=''.$page['title'].'' class='pre_img'>			<img src=''.$page['article_img'].'' width='640'>		</a>		<div class='tags_block'>'.$page['tags'].'</div> 		<div class='article_block_name'>			<p><a href='/magazine/male_articles/view_article.php?id='.$page['id'].'' target='_self'>'.$page['title'].'</a></p>		</div>	</div>';}

 

 

У вас в шаблоне %s встречается 5 раз, а параметров передано 6.

да нет, там 6 передано )

 

А цикл можно как-то запустить? :)

Link to comment
Share on other sites

  • 0

 

У вас в шаблоне %s встречается 5 раз, а параметров передано 6.

Проблема-то не в этом)

foreach ($pages as $page) {	echo '	<div class='article_block'> 		<a href='/view_article.php?id='.$page['id'].'' target='_self' title=''.$page['title'].'' class='pre_img'>			<img src=''.$page['article_img'].'' width='640'>		</a>		<div class='tags_block'>'.$page['tags'].'</div> 		<div class='article_block_name'>			<p><a href='/magazine/male_articles/view_article.php?id='.$page['id'].'' target='_self'>'.$page['title'].'</a></p>		</div>	</div>';}
У вас в шаблоне %s встречается 5 раз, а параметров передано 6.

да нет, там 6 передано )

 

А цикл можно как-то запустить? :)

 

Сделал! Разорвал html-код в том месте, где нужно запустить цикл, вывел так:

foreach ($pages as $page){printf(первая часть html-кода);$tags = explode("/", $page["tags"]);foreach ($tags AS $tag) {echo "<a href='/search_view.php?submit=&select=tag&query=" . $tag . "' title='Поиск по тегу'>" . $tag . "</a>";}printf(вторая часть html-кода);}
Edited by Torawhite
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy