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-15 12:59:38 +01:00
<?php
$str = "Welcome";
$arr = explode('c',$str);
print_r($arr);
?>