Answers for "extract part of the string in php from a file"

PHP
1

extract in php

$arr = array('mango'=>'My favourite fruit','apple'=>'It is good for health','banana'=>'it is good for bones'); 

// it will convert array to variable 

extract($arr); 

echo $mango."</br>"; 

echo $apple."</br>"; 

echo $banana;
Posted by: Guest on September-29-2021

Code answers related to "extract part of the string in php from a file"

Browse Popular Code Answers by Language