熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

在PHP中使用ASP.NET AJAX

2022-06-13   來源: PHP編程 
編寫Service文件

新建一個php文件命名為EmployeeServicephp首先寫上這一句include必要的支持代碼

require_once MSAjaxServicephp;


然後定義一個Employee類四個屬性一目了然不用多說

class Employee
{
public $Id;
public $Name;
public $Email;
public $Salary;

function __construct($id $name $email $salary)
{
$this>Id = $id;
$this>Name = $name;
$this>Email = $email;
$this>Salary= $salary;
}
}


接下來是EmployeeService類繼承與MSAjaxServicephp中的MSAjaxService基類其中定義一個方法用來返回一個Employee對象

class EmployeeService extends MSAjaxService
{
function GetEmployee()
{
return new Employee( Dflying Chen );
}
}


然後新建一個EmployeeService的實例並且調用基類的ProcessRequest()方法處理該請求

$theService = new EmployeeService();
$theService>ProcessRequest();


大功告成!
From:http://tw.wingwit.com/Article/program/PHP/201311/20846.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.