This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| /* user */ users.id AS user_id, first_name, last_name, email, company, twitter, airport, url, transportation, hotel, info, bio, | |
| /* talk */ talks.id AS talk_id, title, description, other, type, level, category, slides, desired, sponsor | |
| FROM `talks`, `users` | |
| WHERE talks.user_id = users.id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class SentenceCorector { | |
| protected $originalSentence = null; | |
| protected $correctedSentance = null; | |
| protected $corrections = 0; | |
| public function corect($sentence) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class MyClass | |
| { | |
| static function myMethod( | |
| $x = <<<'FOO' | |
| Hello | |
| FOO | |
| , $y = <<<'BAR' | |
| PHP_Depend | |
| BAR |