Hallo Tweakers,
Bestaat er een mogelijkheid om een functie in een class te zetten. Ik heb een stukje voorbeeld code geschreven om te laten zien wat ik precies bedoel:
Bestaat er een mogelijkheid om een functie in een class te zetten. Ik heb een stukje voorbeeld code geschreven om te laten zien wat ik precies bedoel:
PHP:
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
32
33
34
35
36
37
| <################################################################################################################# // './addons/image.php' class plugin_images{ public function plugin_showimage($image){ return '<img src="'.$image.'" alt="Test" />'; } } // './addons/youtube.php' class plugin_youtube{ public function plugin_youtube($vid){ return '<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/'.$vid.'" frameborder="0" allowfullscreen></iframe>'; } } ################################################################################################################# // './application.class.php' class clsApplication{ public function __construct(){ echo 'Application initialized.<br />'; } } ################################################################################################################# // './index.php' $application = new clsApplication(); // De lijn hieronder wil ik werkend zien te krijgen. Dus de class 'plugin_images' moet worden geimplanteerd in clsApplication. // $application->plugin_showimage('http://www.google.nl/images/logos/ps_logo2a_cp.png'); // $application->plugin_youtube('D6mtiaL30vk'); ################################################################################################################# |
[ Voor 11% gewijzigd door xehbit op 28-02-2011 20:36 ]