gateway.php

来自「实现flash的饼图投票」· PHP 代码 · 共 29 行

PHP
29
字号
<?php    /*[Hejone] gateway.phpThis is a NOT freeware,use is subject to license termsProgram Author: hejone(hejone@sina.com)Program Version:1.0_nCopyright:hejone http://www.ha365.comLast Modified:09/16/2004*/    /*         change this to        include("/path/to/your/flashservices/app/Gateway.php");        if you are not using the php_include_path functionality.    */          	//下行""里的路径 改成你主机的绝对路径,指向flashservices/app/Gateway.php	include "/home/username/public_html/flashservices/app/Gateway.php";	    $gateway = new Gateway();	/*修改路径指向poll/services目录,比如你的services路径是这	  样:http://www.xxxx.com/php/poll/services,则改为$baseClassPath = $_SERVER['DOCUMENT_ROOT']."/php/poll/services/";	*/    $baseClassPath = $_SERVER['DOCUMENT_ROOT']."/poll/services/";    $gateway->setBaseClassPath($baseClassPath);    $gateway->service();?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?