I have file with this records
public $user = 'userxxxx';
public $password = 'xxxxxxxxx';
public $db = 'dbxxx';
public $user = 'useryy';
public $password = 'yyyyyyyyyy';
public $db = 'dbyy';
I need to parse the file and extract only the
and our records $user $password $db .
Thanks
public $user = 'userxxxx';
public $password = 'xxxxxxxxx';
public $db = 'dbxxx';
public $user = 'useryy';
public $password = 'yyyyyyyyyy';
public $db = 'dbyy';
I need to parse the file and extract only the
and our records $user $password $db .
Thanks