Développement Web Multi-Applicatif
Sur mon github
https://github.com/Duwab/nginx-https-php-nodejs-websocket
1 2 3 4 5 | var message = "Hello world!" ; function doTheAlert() { alert(message); } doTheAlert(); |
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 | /* Person Class */ public class Person { private $name = "anonym" ; public function __construct( $name ) { $this ->name = $name } public function getName(){ return $this ->name; } } $me = new Person( "Leonardo" ); echo $me ->getName(); |
Leave a Reply