If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
PHP explode() function का use String से Array में convert करने के लिए किया जाता है।
explode ( string $separator , string $string , int $limit = PHP_INT_MAX);
यह method तीन arguments accept करता है।
string $separator | required : separator वह string है , जिसके according आप String को explode करना चाहते हो। ये whitespace , comma (,) , या underscore (_) कुछ भी हो सकता है।
string $string | required : वो string जिसे आप Array में convert करना चाहते हैं।
int $limit = PHP_INT_MAX | optional : यह optional होता है , basically इसमें pass किये गए number तक ही String , Array में convert होती है।
File : php_explode.php
<?php
$str = "Hello world. It's a beautiful day.";
echo "<pre>";
print_r (explode(" ",$str));
echo "</pre>";
?>
Array ( [0] => Hello [1] => world. [2] => It's [3] => a [4] => beautiful [5] => day. )
print_r (explode(" ",$str, -3));
/*Output*/
Array
(
[0] => Hello
[1] => world.
[2] => It's
)
तो कुछ इस तरह से , PHP में explode() function work करता है। I Hope अब आपको explode() function के बारे में clear हो गए होंगे।