Reputation: 8700
I understand that Doctrine helps against SQL injection attacks. Does the model_object->save()
command automatically escape unwanted characters, or do I have to write a custom input filter? Thanks.
Upvotes: 3
Views: 559
Reputation: 574
the exact answer to your question can be found in Doctrine manual implicit-validation.
More info can also be found there: Validator and Data Validation.
Regards.
Upvotes: 1