You’re probably using at least two of those. The one you get from “php --ini” is the CLI (command-line one). This only affects SuitecRM for Scheduler jobs launched via crontab.
The one you really need is the one your web server is using.
Use this command
sh -c 'echo "<?php phpinfo(); ?>" > /var/www/html/info.php'
This will create a file called info.php in /var/www/html. I am assuming that is the root directory your web server is serving; if not, please adjust the command.
Then you can call it from your browser:
And check PHP settings from there.
Make sure the file has enough permissions to run.