1樓:弭枋澤
1、引用類:比如類名為product,則:include('...路徑/product.php');
2、例項化:$product = new product();
3、呼叫類的方法:$product->add();
完整示例如下:
product.php
class product
}呼叫方法:
include('...路徑/product.php');
$product = new product();
$result = $product->add();
2樓:閒置星空
require_once "php.php"; //引用那個被呼叫的類,注意雙引號中應當為這個php檔案的路徑
$php = new php(); //例項化這個類
$php->php() //例如這個類有個方法叫php(),呼叫這個方法
3樓:匿名使用者
把你要設定為首頁的頁面名稱改為index.php或者在index.php裡做跳轉,轉到你要呼叫的頁面
4樓:匿名使用者
講得不是很明白,不過應該是在一個類中呼叫另外的一個類吧?這個可以使用繼承的方法。如 一個類的名字叫 class1,另一個類的名字叫class2.
如果你在類class1中想要使用類class2中的方法或屬性,可以使用繼承,即class class1 extends class2 //呼叫類中的方法$c=new class1();//例項這個類;$c->class2_functions();//class2_function2 來自類class2中的非私有方法
5樓:匿名使用者
先用 include或require將檔案包含到你需要呼叫該類的檔案中 <將目標檔案包含進來 $classname = new class();//將目標類例項化 $classname->show(); //這樣訪問目標類裡面的方法。?
>
6樓:匿名使用者
要先include或者require才能呼叫 比如有一個類a$class = new a;
php為什麼要用c來擴充套件,php怎麼呼叫c擴充套件
1 首先編寫一個函式定義檔案,該檔案編寫函式原型字尾為def,假設為 caleng module.def int a int x,int y string b string str,int n 2 通過擴充套件骨架生成器,將在ext目錄下自動建立擴充套件目錄caleng module ext ske...
php類中定義了函式怎麼使用它,php類中定義了一個函式,怎麼使用它?
php類中定義的函式有幾種,例如 class a 受保護的方法 protected function test2 靜態方法 static function st 私有方法 private function test3 內部訪問 public function use 外部呼叫方法 a new a a...
shell呼叫其他指令碼函式怎麼做
source a.sh echo fun get echo number 儲存為b.sh shell指令碼怎麼呼叫其他shell指令碼 在shell中要如何呼叫別的shell指令碼,或別的指令碼中的變數,函式呢?方法一 subscript.sh方法二 source subscript.sh注意 1....