|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-27 19:49 UTC] rubys@php.net
[2000-08-13 20:37 UTC] rubys@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 10:00:01 2025 UTC |
Please add proper configuration-help to the php_java.dll distribution. I use jdk 1.2.2 and jre 1.2.2. I want to see the source of php_java.dll if I may. How do I use user-defined java-classes in php? The warning that was generated: Warning: ? ? in c:\src\httpd\docs\javaext\jver.php on line 21 the code I used: $test= new Java("Test", "test"); and the java-class: public class Test { String s; public Test(String s) { this.s= s; } public String gets() { return s; } }