Is there such a tool that finds language/spelling errors in code comment and strings in PHP code? for example,
<?php
$myVar = "Hollo World";
//this is a code commont with spelling error
/*this is anothor wrong comment*/
?>
If I run such a tool, then it will find ‘Hollo’, ‘commont’, and ‘anothor’ spelling errors for me.
IDEs such as Eclipse or NetBeans would do the spell checking themselves, you need only to enable such features.