<?php
/*
$Id: nusoap.php,v 1.75 2004/05/05 12:15:04 snichol Exp $
NuSOAP - Web Services Toolkit for PHP
Copyright (c) 2002 NuSphere Corporation
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
If you have any questions or comments, please email:
Dietrich Ayala
dietrich@ganx4.com
http://dietrich.ganx4.com/nusoap
NuSphere Corporation
http://www.nusphere.com
*/
/* load classes
// necessary classes
require_once('class.soapclient.php');
require_once('class.soap_val.php');
require_once('class.soap_parser.php');
require_once('class.soap_fault.php');
// transport classes
require_once('class.soap_transport_http.php');
// optional add-on classes
require_once('class.xmlschema.php');
require_once('class.wsdl.php');
// server class
require_once('class.soap_server.php');*/
/**
*
* nusoap_base
*
* @author Dietrich Ayala <dietrich@ganx4.com>
* @version $Id: nusoap.php,v 1.75 2004/05/05 12:15:04 snichol Exp $
* @access public
*/
class nusoap_base {
var $title = 'NuSOAP';
var $version = '0.6.7';
var $revision = '$Revision: 1.75 $';
var $error_str = false;
var $debug_str = '';
// toggles automatic encoding of special characters as entities
// (should always be true, I think)
var $charencoding = true;
/**
* set schema version
*
* @var XMLSchemaVersion
* @access public
*/
var $XMLSchemaVersion = 'http://www.w3.org/2001/XMLSchema';
/**
* set charset encoding for outgoing messages
*
* @var soap_defencoding
* @access public
*/
//var $soap_defencoding = 'UTF-8';
var $soap_defencoding = 'ISO-8859-1';
/**
* load namespace uris into an array of uri => prefix
*
* @var namespaces
* @access public
*/
var $namespaces = array(
'SOAP-ENV' => 'http://schemas.xmlsoap.org/soap/envelope/',
'xsd' => 'http://www.w3.org/2001/XMLSchema',
'xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
'SOAP-ENC' => 'http://schemas.xmlsoap.org/soap/encoding/',
'si' => 'http://soapinterop.org/xsd');
var $usedNamespaces = array();
/**
* load types into typemap array
* is this legacy yet?
* no, this is used by the xmlschema class to verify type => namespace mappings.
* @var typemap
* @access public
*/
var $typemap = array(
'http://www.w3.org/2001/XMLSchema' => array(
'string'=>'string','boolean'=>'boolean','float'=>'double','double'=>'double','decimal'=>'double',
'duration'=>'','dateTime'=>'string','time'=>'string','date'=>'string','gYearMonth'=>'',
'gYear'=>'','gMonthDay'=>'','gDay'=>'','gMonth'=>'','hexBinary'=>'string','base64Binary'=>'string',
// derived datatypes
'normalizedString'=>'string','token'=>'string','language'=>'','NMTOKEN'=>'','NMTOKENS'=>'','Name'=>'','NCName'=>'','ID'=>'',
'IDREF'=>'','IDREFS'=>'','ENTITY'=>'','ENTITIES'=>'','integer'=>'integer','nonPositiveInteger'=>'integer',
'negativeInteger'=>'integer','long'=>'integer','int'=>'integer','short'=>'integer','byte'=>'integer','nonNegativeInteger'=>'integer',
'unsignedLong'=>'','unsignedInt'=>'','unsignedShort'=>'','unsignedByte'=>'','positiveInteger'=>''),
'http://www.w3.org/1999/XMLSchema' => array(
'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double',
'float'=>'double','dateTime'=>'string',
'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'),
'http://soapinterop.org/xsd' => array('SOAPStruct'=>'struct'),
'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string','array'=>'array','Array'=>'array'),
'http://xml.apache.org/xml-soap' => array('Map')
);
/**
* entities to convert
*
* @var xmlEntities
* @access public
*/
var $xmlEntities = array('quot' => '"','amp' => '&',
'lt' => '<','gt' => '>','apos' => "'");
/**
* adds debug data to the class level debug string
*
* @param string $string debug data
* @access private
*/
function debug($string){
$this->debug_str .= get_class($this).": $string\n";
}
/**
* expands entities, e.g. changes '<' to '<'.
*
* @param string $val The string in which to expand entities.
* @access private
*/
function expandEntities($val) {
if ($this->charencoding) {
$val = str_replace('&', '&', $val);
$val = str_replace("'", ''', $val);
$val = str_replace('"', '"', $val);
$val = str_replace('<', '<', $val);
$val = str_replace('>', '>', $val);
}
return $val;
}
/**
* returns error string if present
*
* @return boolean $string error string
* @access public
*/
function getError(){
if($this->error_str != ''){
return $this->error_str;
}
return false;
}
/**
* sets error string
*
* @return boolean $string error string
* @access private
*/
function setError($str){
$this->error_str = $str;
}
/**
* detect if array is a simple array or a struct (associative array)
*
* @param $val The PHP array
* @return string (arraySimple|arrayStruct)
* @access private
*/
function isArraySimpleOrStruct($val) {
$keyList = array_keys($val);
foreach ($keyList as $keyListValue) {
if (!is_int($keyListValue)) {
return 'arrayStruct';
}
}
return 'arraySimple';
}
/**
* serializes PHP values in accordance w/ section 5. Type information is
* not serialized if $use == 'literal'.
*
* @return string
* @access public
*/
function serialize_val($val,$name=false,$type=false,$name_ns=false,$type_ns=false,$attributes=false,$use='encoded'){
if(is_object($val) && get_class($val) == 'soapval'){
return $val->serialize($use);
}
$this->debug( "in serialize_val: $val, $name, $type, $name_ns, $type_ns, $attributes, $use");
// if no name, use item
$name = (!$name|| is_numeric($name)) ? 'soapVal' : $name;
// if name has ns, add ns prefix to name
$xmlns = '';
if($name_ns){
$prefix = 'nu'.rand(1000,9999);
$name = $prefix.':'.$name;
$xmlns .= " xmlns:$prefix=\"$name_ns\"";
}
// if type is prefixed, create type prefix
if($type_ns != '' && $type_ns == $this->namespaces['xsd']){
// need to fix this. shouldn't default to xsd if no ns specified
// w/o checking against typemap
$type_prefix = 'xsd';
} elseif($type_ns){
$type_prefix = 'ns'.rand(1000,9999);
$xmlns .= " xmlns:$type_prefix=\"$type_ns\"";
}
// serialize attributes if present
$atts = '';
if($attributes){
foreach($attributes as $k => $v){
$atts .= " $k=\"$v\"";
}
}
// serialize if an xsd built-in primitive type
if($type != '' && isset($this->typemap[$this->XMLSchemaVersion][$type])){
if (is_bool($val)) {
if ($type == 'boolean') {
$val = $val ? 'true' : 'false';
} elseif (! $val) {
$val = 0;
}
} else if (is_string($val)) {
$val = $this->expandEntities($val);
}
if ($use == 'literal') {
return "<$name$xmlns>$val</$name>";
} else {
return "<$name$xmlns xsi:type=\"xsd:$type\">$val</$name>";
}
}
// detect type and serialize
$xml = '';
switch(true) {
case ($type == '' && is_null($val)):
if ($use == 'literal') {
// TODO: depends on nillable
$xml .= "<$name$xmlns/>";
} else {
$xml .= "<$name$xmlns xsi:nil=\"true\"/>";
}
break;
case (is_bool($val) || $type == 'boolean'):
if ($type == 'boolean') {
$
4064黑色宽屏大图幻灯扁平化HTML5模板5500_企业网站模板PHP整站源码.zip.7z
需积分: 0 100 浏览量
更新于2023-08-01
收藏 2.29MB 7Z 举报
该资源是一个名为"4064黑色宽屏大图幻灯扁平化HTML5模板5500_企业网站模板PHP整站源码.zip.7z"的压缩包,其中包含了一个企业网站的完整源码,特别适用于构建具有现代设计风格的公司官网。此模板以黑色为主色调,采用了宽屏设计,能够展示大图幻灯效果,同时运用了扁平化设计原则,符合当前网页设计的流行趋势。其核心技术包括HTML5、CSS3以及PHP,这些元素共同构成了一个功能强大且视觉效果出众的网站结构。
HTML5是现代网页开发的标准,它提供了许多新的语义标签,如<header>、<nav>、<section>、<article>等,使得网页内容结构更加清晰,有利于搜索引擎优化(SEO)。同时,HTML5支持多媒体元素的内联播放,无需插件即可显示音频、视频内容。CSS3则增强了样式表的功能,允许创建动态效果、过渡、动画,以及更复杂的布局模式,如Flexbox和Grid,为设计提供更大的灵活性。
PHP是一种广泛使用的服务器端脚本语言,尤其适合用于web开发。它可以与MySQL等数据库进行交互,实现动态网站内容,如用户注册、登录、数据管理等功能。在这个整站源码中,PHP可能包含了后台管理系统,使得管理员能够方便地更新网站内容,管理用户数据,以及处理各种业务逻辑。
模板中的“大图幻灯”功能通常由JavaScript或jQuery库实现,通过轮播效果展示多张大图,为访问者带来引人入胜的视觉体验。扁平化设计则强调简洁、直观,减少过多的装饰性元素,提高用户体验。这种设计风格在移动设备上表现尤为出色,因为它降低了加载时间,提高了响应速度。
此外,这个压缩包很可能还包括其他必要文件,如图片资源、字体文件、JavaScript库等,它们都是构成完整网站所必需的部分。在部署这个网站模板时,需要确保服务器环境支持PHP运行,并正确配置数据库连接。对于不熟悉编程的用户,可能还需要借助FTP工具将源码上传至服务器,并通过控制面板进行相关设置。
这个压缩包提供的是一套完整的PHP企业网站解决方案,结合了HTML5的先进特性、CSS3的视觉效果以及PHP的动态功能,是构建现代企业官网的理想选择。开发者或网站所有者可以在此基础上进行定制,以满足特定的品牌需求和功能要求。
qq_41146932
- 粉丝: 12
- 资源: 6306
最新资源
- 机器学习逻辑回归完成员工离职预测
- W25Q64-FLASH
- 基于SpringBoot框架的餐饮商家管理系统设计源码
- 基于C#编程的Minecraft简易材质包生成器设计源码
- 基于深度学习技术的Vue框架在线学生成绩与学业发展分析系统设计源码
- 基于OneOS操作系统的SMx加密算法组件设计源码
- 基于Html语言的LinysBrowser_NEXT鸿蒙浏览器设计源码
- Comsol光子晶体微腔及其傅里叶变分析 包含comsol和fdtd模型,以及matlab代码等
- 基于微信公众号的在线培训平台录播直播系统设计源码
- 物联网智能开关平台服务端硬件端、安卓端和前端源码 源代码 程序 智能开关平台,包含服务端、硬件端、安卓端和前端 关键词:智能家居、物联网开关、远程开关、红外线遥控开关、WIFI继电器、MQTT协议、
- 基于Java、Vue的开放式一物一码溯源防伪系统设计源码
- 潮汐发电,永磁同步发电机,变速运行,采用MTPA控制,独特的弱磁曲线,提高起始转矩,调速范围宽 同时附赠id=0控制永磁同步电机控制 波形理想
- 基于C语言的violin调式转换练琴设计源码
- 基于Vue框架的掌上医院uniapp设计源码
- 基于Vue.js框架的3D翻转效果会员卡/粉丝卡设计源码,包含反光特效与响应式布局
- 图像分割语义分割unet、 deeplab3、FCN、Resnet网络等 基于pytorch框架制作 全套项目,包含网络模型,训练代码,预测代码,直接下载数据集就能跑,拿上就能用,简单又省事