How to convert string to an array in PHP?

marten
marten

Posted On: Apr 15, 2024

 

The str_split function used to partition of the string into equal length. Then the string part becomes an array element. The array element contains the remaining end string.

$str1 = 'abcdefghijklmnopqrstuvwxyzpq';
$split1 = str_split($str1, 5);
print_r($split1);

OUTPUT of the following code

  • [0] = abcde
  • [1] = fghij
  • [2] = klmno
  • [3] = pqrst
  • [4] = uvwxy
  • [5] = zpq

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    PHP String Interview Questions

    What is String in PHP?

    The String is a collection or set of characters in sequence in PHP. The String in PHP is used to save and manipulate like an update, delete and read the data....

    PHP String Interview Questions

    How to cast a php string to integer?

    The int or integer used for a variable into an integer in PHP....

    PHP String Interview Questions

    How to perform string concatenation in PHP?

    The string concatenation means two strings connect together. The dot ( . ) sign used in PHP to combine two string. Example:- <?php $stringa = " creative "; $stringb = "writing "; echo $stringa ...