[PHP] pobierz, plaintext <?phpclass xxx { function a() { echo('Tekst'); } function b() { a(); }} $x = new xxx();$x->b();?>[PHP] pobierz, plaintext