Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class DB
  2. {
  3. // объявление свойств
  4. protected $host = 'localhost';
  5. protected $db = 'db';
  6. protected $charset = 'utf8';
  7. protected $user = 'user';
  8. protected $pass = 'pwd';
  9.  
  10. public function __construct() {
  11. // создание подключения к БД
  12. }
  13.  
  14. // другие методы класса
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement