I've partially discovered a solution more elegant than using Bash & SED to edit config.xml directly.
instead, I created files in /etc/phpshellsessions called 'throttleon' and 'throttleoff'. Contents:
require_once("config.inc");
require_once("filter.inc");
global $config;
parse_config(true);
$config['filter']['rule']['0']['disabled'] = false;
write_config("throttleon");
throttleoff is exactly the same, but 'disabled' = true; instead.
I checked in the shell first to get the index of the rule i wanted to enable ( and it's rule '0', so that is why it's referenced in the code above ).
These can now be called via pfSsh.php playback throttleon ( or off ).
Interestingly, I tried to use the pfsense PHP shell record feature to do this, but it just created 0 byte files for some reason ( even though the commands in the session worked fine ).
It seems I don't need to call rc.filter_configure either, as playing back these files updates the rule enable/disable status ( maybe a feature of the shell? )