HomePHP Write a PHP script to split the following string Vikram somai September 23, 2021 0 Comments Facebook Twitter Write a PHP script to split the following stringchunk_spilt():-The chunk_split() function splits a string into a series of smaller parts.code:-<?php$str= 'hello'; echo substr(chunk_split($str, 2, ' '), 0, -1);?>output:-he ll o Tags PHP Facebook Twitter
Post a Comment
If you have any doubts, Please let me know
Thanks!