Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
continuous scrolling carousels
#8
Hi,
I found a way to remove white space left and right from => = +

Make use of str_replace


Code:
// Remove space around =>
$buffer = str_replace(' => ', '=>', $buffer);
// Remove space around =
$buffer = str_replace(' = ', '=', $buffer);
// Remove space around +
$buffer = str_replace(' + ', '+', $buffer);
Reply


Messages In This Thread
continuous scrolling carousels - by Felix - 2020-09-14, 04:08:35
RE: continuous scrolling carousels - by zekoolweb - 2020-09-20, 20:55:06
RE: continuous scrolling carousels - by Felix - 2020-09-21, 00:27:05
RE: continuous scrolling carousels - by Felix - 2020-09-21, 20:16:16
RE: continuous scrolling carousels - by zekoolweb - 2020-09-21, 21:50:36
RE: continuous scrolling carousels - by Felix - 2020-09-21, 21:58:22
RE: continuous scrolling carousels - by Felix - 2020-09-24, 17:12:16
RE: continuous scrolling carousels - by Felix - 2020-09-24, 17:28:33



Users browsing this thread: 1 Guest(s)