Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JSON
- function
- Arrays
- jquery
- Ajax
- string
- 웹하드추천
- 전략
- Linux
- HTML
- Apache
- post
- MySQL
- OOP
- curl
- JavaScript
- 경영
- UTF-8
- php
- 무료다운로드쿠폰
- date
- composer-php
- Regex
- 웹하드순위
- Forms
- Session
- variables
- file-upload
- Laravel
Archives
- Today
- Total
목록polymorphism (1)
개발! 딱 깔끔하고 센스있게!
PHP 예제를 사용한 일반적인 다형성
개만'되찾기'를 할 수 있기 때문이다. 이 예는 좋은 생각이냐 나쁜 생각이냐?인스타뉴스의 사용으로 인해, 이것은 매우 엉망진창이라는 생각이 들었지만, 나는 왜 그런지 전혀 확실치 않다. class Animal { var $name; function __construct($name) { $this->name = $name; } } class Dog extends Animal { function speak() { return "Woof, woof!"; } function playFetch() { return 'getting the stick'; } } class Cat extends Animal { function speak() { return "Meow..."; } } $animals = array(new..
개발 스크랩 메모/PHP
2020. 11. 21. 23:54