Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. ...
  4.  
  5. $limite = AQUI VAI O VALOR DO BANCO;
  6.  
  7. $txt = preg_replace_callback('#(<br />)#', function ($i) use ($limite) {
  8. static $conta1 = 0;
  9. $retorno = $i[0];
  10.  
  11. if(++$conta1 == $limite)
  12. {
  13. $retorno .= '<b>BANNER 1</b>';
  14. }
  15.  
  16. return $retorno;
  17. }, $conteudo);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement