programming-examples/php/Basics/Program to split a string into an array elements based on delimiter..php

7 lines
79 B
PHP
Raw Normal View History

2019-11-18 14:44:36 +01:00
<?php
$str = "Welcome";
$arr = explode('c',$str);
print_r($arr);
?>