Created
April 10, 2020 00:13
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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