Reputation: 1568
If I user php get_browser(), what are the possible values for the 'browser' key? Assuming I choose to return an array. I need to determine which browser it is with a switch, but I can't find anywhere on line where it lists possible values.
Upvotes: 1
Views: 290
Reputation: 39889
This list is determined by your browscap.ini
file that is within your PHP config folder. You could also add your own browscap.ini
file with whatever browser name you want.
Take a look at the docs: https://www.php.net/get_browser
Upvotes: 3