# Php

# Troubleshooting

# Version

Get version

php --version
1

# Var dump

(for debuging) 😃
Run the following script. Either by cli or get through a webserver, like for wordpress debuging with Doctor.

<?php var_dump($_SERVER); ?>
1

# Modules

Get available modules

php -m
1