Skip to content

Instantly share code, notes, and snippets.

@guibranco
Created April 10, 2020 00:13
Show Gist options
  • Save guibranco/8d99ce4baf77ee9ed30e6bbecd258691 to your computer and use it in GitHub Desktop.
Save guibranco/8d99ce4baf77ee9ed30e6bbecd258691 to your computer and use it in GitHub Desktop.
Adicionar banner a cada X caracteres - PHP Brasil - Facebook - https://www.facebook.com/groups/142151625841770/permalink/2976960449027526/
<?php
$texto = "sua string de 1500 caracteres";
$limite = 5; //troca para 500, fiz 5 só pra teste.
$banner = "<img src='https://via.placeholder.com/50' alt='teste'/>"; //troca pelo seu código de banner.
$result = "";
$splits = strlen($texto) % $limite;
for($i=0;$i<$splits;$i++)
$result .= substr($texto, $i * $limite, $limite) . $banner;
echo $result;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment