You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Cham的口水集中营
<?php class helloworld{ var $hello; function helloworld ($show_in) { $this->hello=$show_in; } function display() { print $this->hello; } } $show = new helloworld("Hello World!"); $show->display(); ?>