php&java(二)_php基础

例子1:创建和使用你自己的JAVA类
创建你自己的JAVA类非常容易。新建一个phptest.java文件,将它放置在你的java.class.path目录下,文件内容如下:

public class phptest{
/**
* A sample of a class that can work with PHP
* NB: The whole class must be public to work,  
* and of course the methods you wish to call
* directly.
*
* Also note that from PHP the main method
* will not be called   
*/

public String foo;

/**
* Takes a string and returns the result
* or a msg saying your string was empty
*/
public String test(String str) {    
if(str.equals("")) {
      str = "Your string was empty. ";    
}    
return str;   
}

/**
* whatisfoo() simply returns the value of the variable foo.
*/   
public String whatisfoo() {    
return "foo is " + foo;   
}

/**
* This is called if phptest is run from the command line with
* something like
*  java phptest
* or
*  java phptest hello there
*/
public static void main(String args[]) {
phptest p = new phptest();

if(args.length == 0) {
String arg = "";
System.out.println(p.test(arg));
}else{
for (int i=0; i < args.length; i++) {
String arg = args[i];
System.out.println(p.test(arg));   
}
}
}
}

创建这个文件后,我们要编译好这个文件,在DOS命令行使用javac phptest.java这个命令。

为了使用PHP测试这个JAVA类,我们创建一个phptest.php文件,内容如下:

<?php

$myj = new Java("phptest");
echo "Test Results are <b>" . $myj->test("Hello World") . "</b>";

$myj->foo = "A String Value";
echo "You have set foo to <b>"   . $myj->foo . "</b><br>n";
echo "My java method reports: <b>" . $myj->whatisfoo() . "</b><br>n";

?>

如果你得到这样的警告信息:java.lang.ClassNotFoundException error ,这就意味着你的phptest.class文件不在你的java.class.path目录下。
注意的是JAVA是一种强制类型语言,而PHP不是,这样我们在将它们融合时,容易导致错误,于是我们在向JAVA传递变量时,要正确指定好变量的类型。如:$myj->foo = (string) 12345678; or $myj->foo = "12345678";

这只是一个很小的例子,你可以创建你自己的JAVA类,并使用PHP很好的调用它!

时间: 2024-09-30 17:29:13

php&amp;java(二)_php基础的相关文章

JAVA/JSP学习系列之二_php基础

一.前言 对于初学者来说,要执行JSP和Servlet,Tomcat是一个很不错的选择,.Tomcat是Apache组织的产品,sun公司对它的支持也相当不错. 二.下载,安装 下载地址为JAVA官方站点:jakarta.apache.org,国内也比较多. 从这个地址可以下载:http://jakarta.apache.org/builds/tomcat/release/,我下载的是Tomcat32b4版本. 下载完,解压到一个目录,我这里用F: omcat32b4作为例子. 三.配置 桌面上

PHP5试用(二)_php基础

抽象类 抽象类不能被实例化. 抽象类与其它类一样,允许定义变量及方法. 抽象类同样可以定义一个抽象的方法,抽象类的方法不会被执行,不过将有可能会在其派生类中执行. 例六:抽象类 <?php abstract class foo { protected $x; abstract function display(); function setX($x) { $this->x = $x; } } class foo2 extends foo { function display() { // Co

新版PHP将向Java靠拢_php基础

所谓的"PHP"就是开放源码的Web应用开发/运行环境,日前<日经Open System>记者就今后PHP开发中心的发展计划等问题采访了该中心成员Zeev Suraski.Zeev Suraski表示,新版PHP中将导入try.catch等语句,从而更接近Java,以便更容易地进行大型系统的开发.(采访者:高桥 信赖) --请您谈一下决定开发PHP的起因. Rasmus Lerdorf于1995年首先公布了PHP.1997年我在制作以色列大学网页及网上商店站点时,使用了当时

我的论坛源代码(二)_php基础

主界面,也就是显示主题列表的这页. //foxbbs.php 功能:显示论坛的主题 <HTML> <HEAD> <TITLE>狐网论坛</TITLE> <STYLE type=text/css> P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt} DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt} </ST

PHP 和 XML: 使用expat函数(二)_php基础

 PHP 和 XML: 使用expat函数(二) 让我们看一下实际处理这个文档的PHP代码. /*NewsBoy : News system for the web written in PHP by Justin Grant (Web: jusgrant.cjb.net or justin.host.za.net Mail: justin@glendale.net)25 March V0.0.2 Converted Newsboy to a PHP class, allowing the la

分页显示Oracle数据库记录的类之二_php基础

//-------------------------------- // 工作函数 //-------------------------------- //读取记录 //主要工作函数,根据所给的条件从表中读取相应的记录 //返回值是一个二维数组,Result[记录号][字段名] function ReadList() { $SQL="SELECT * FROM ".$this->Table." ".$this->Condition." OR

社区(php&amp;amp;&amp;amp;mysql)二_php基础

function sdatetime($str){     $str=ereg_replace("-","/",$str);     $str=substr($str,5,strlen($str)-8);     return $str; } function reAnum($sid){ //羆莱絞计     $DROOT=getenv('DOCUMENT_ROOT');     include("sql.php3");     $db=mys

BBS(php &amp;amp; mysql)完整版(二)_php基础

//此页面为look.php <? include "signup/mysql.inc"; $sql="select * from ".$table." where id='$id'"; $result=mysql_query($sql)or die(mysql_error()); $row=mysql_fetch_array($result); $number=++$row["number"]; $sql="

一个简单的自动发送邮件系统(二)_php基础

这里介绍php和mysql结合起来实用.     基本上,可以说php是介于后台数据库和前台浏览器的一个中间层,在他们之间传递命令.这种方式大大提高了交互的可能性,可以方便使用在投票系统,其他动态用户输入和个性化网站中.     要想实现这种交互,首先必需实现和mysql数据库连接,可以使用这个命令实现:     语法:int mysql_connect(string hostname, string username, string password);       ·hostname - 运

聊天室php&amp;amp;mysql(二)_php基础

//第二页面 name="frame2.php" <? include "../signup/mysql.php"; header("Expires: Sun, 28 Dec 1997 09:32:45 GMT"); header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); header("