人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當(dāng)前位置:蘿卜系統(tǒng)下載站 > 技術(shù)開發(fā)教程 > 詳細頁面

php 與 java(二)

php 與 java(二)

更新時間:2022-10-06 文章作者:未知 信息來源:網(wǎng)絡(luò) 閱讀次數(shù):

作者:井中月

例子1:創(chuàng)建和使用你自己的JAVA類
創(chuàng)建你自己的JAVA類非常容易。新建一個phptest.java文件,將它放置在你的java.class.path目錄下,文件內(nèi)容如下:

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));
}
}
}
}

創(chuàng)建這個文件后,我們要編譯好這個文件,在DOS命令行使用javac phptest.java這個命令。

為了使用PHP測試這個JAVA類,我們創(chuàng)建一個phptest.php文件,內(nèi)容如下:


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

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

?>

如果你得到這樣的警告信息:java.lang.ClassNotFoundException error ,這就意味著你的phptest.class文件不在你的java.class.path目錄下。
注意的是JAVA是一種強制類型語言,而PHP不是,這樣我們在將它們?nèi)诤蠒r,容易導(dǎo)致錯誤,于是我們在向JAVA傳遞變量時,要正確指定好變量的類型。如:$myj->foo = (string) 12345678; or $myj->foo = "12345678";

這只是一個很小的例子,你可以創(chuàng)建你自己的JAVA類,并使用PHP很好的調(diào)用它!

溫馨提示:喜歡本站的話,請收藏一下本站!

本類教程下載

系統(tǒng)下載排行

網(wǎng)站地圖xml | 網(wǎng)站地圖html
主站蜘蛛池模板: 万全县| 宣汉县| 合江县| 沂南县| 扎鲁特旗| 原平市| 申扎县| 博乐市| 昌都县| 遂宁市| 康定县| 綦江县| 临颍县| 方山县| 同仁县| 常州市| 深泽县| 永宁县| 景德镇市| 天镇县| 灯塔市| 正宁县| 伊川县| 永登县| 九台市| 利津县| 胶南市| 韶山市| 甘洛县| 河池市| 巧家县| 雅江县| 太白县| 遂宁市| 庐江县| 松溪县| 平舆县| 延边| 兴义市| 商河县| 班玛县|