Warning: PDOStatement::execute() [pdostatement.execute]: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '} where tag_slug= 'method_exists'' at line 1 in system/classes/databaseconnection.php line 271
Archive - Пара слов о программировании

Posts tagged with method_exists

12.method_exists() или is_callable()

Просматривая код многих PHP приложений, я замечаю, что функция method_exists() часто используется неуместно, и думаю, что стоит написать об этом пару слов.

Вот типичный пример того, о чем пойдет речь:

  1. if (method_exists($object, 'SomeMethod'))
  2. {
  3. $object->SomeMethod($this, TRUE);
  4. }

читать дальше

 1