Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 857 Bytes

core-faqs.md

File metadata and controls

16 lines (11 loc) · 857 Bytes
category title
DevelopInDepth
FAQs

Matomo Core Developer FAQs

How do I know which browsers support a certain JavaScript or CSS feature?

Go to the Can I use website and enter the name of the feature you want to use. It will tell you which browsers support this specific feature.

Or search through the Mozilla Developer Network which has more granular information about which browsers support specific functions, parameters, syntax, etc.

How do I know if a feature is supported by specific PHP versions?

  • You can check the PHP manual. It will tell you which feature is supposed by which PHP versions.
  • You can also 3v4l to run a specific code on 300+ different PHP versions and compare the output for each version.