I wish to use a grep search to find the string 'base64' in any/all php files in a folder (and its subfolders) saved on my mac's desktop. I'm not very experienced using the Terminal command line functions. I've written
grep -lr base64 *.php
but this only finds the relevant php files in the folder, not its subfolders. What is the correct command to show every php file I'm looking for?