


< ;/html>
/ **
* CopyRight (c) 2009,
* All rights reserved.
* File name:
* Summary:
*
* @author Saturday [url=mailto:ixqbar@ hotmail.com]ixqbar@hotmail.com[/url]
* @version
*/
public function parse()
{
/**
* $_FILES array description
* array(n) {
* ["form file box name"] => array(5) {
* ["name"] => Submit File name
* ["type"] => Submit file type Excel as "application/vnd.ms-excel"
* ["tmp_name"] => Temporary file name
* ["error "] => Error (0 Success 1 File too large exceeds upload_max_filesize 2 File too large exceeds MAX_FILE 3 Incomplete upload 4 No file uploaded)
* ["size"] => File size (unit: KB)
* }
* }
*/
$return=array(0,'');
/**
* Determine whether to submit
* is_uploaded_file (file name) is used to determine whether the specified file is uploaded using the POST method to prevent illegal submission. It is usually used together with move_upload_file to save the uploaded file to the specified path
*/
if(!isset($_FILES) || !is_uploaded_file($_FILES['excel']['tmp_name']))
{
$return=array( 1,'Submission is illegal');
}
//Processing
if(0 == $return[0])
{
import('@.Util.ExcelParser') ;
$excel=new ExcelParser($_FILES['excel']['tmp_name']);
$return=$excel->main();
}
//Output processing
print_r($return);
?>
/**
* CopyRight (c) 2009,
* All rights reserved.
* File name: excel data acquisition
* Summary:
*
* @author Monday [url=mailto :ixqbar@hotmail.com]ixqbar@hotmail.com[/url]
* @version 0.1
*/
class ExcelParser
{
private $_data=array(0,'');
private $ _excel_handle;
private $_excel=array();
/**
* Constructor
* @param
*/
public function __construct($filename)
{
/**
* Introduce excelparser class
* The common method is
* requires path.'excelparser.php';
*/
import('@.Util.PHPExcelParser.excelparser','','.php');
$this->_excel_handle=new ExcelFileParser();
//Error getting
$this ->checkErrors($filename);
}
/**
* Error checking
*/
private function checkErrors($filename)
{
/**
* Method 1
*/
$error_code=$this->_excel_handle->ParseFromFile($filename);
/**
* 方法二
* $file_handle = fopen($this->_filename,'rb');
* $content = fread($file_handle,filesize($this->_filename));
* fclose($file_handle);
* $error_code = $this->_excel->ParseFromString($content);
* unset($content,$file_handle);
*/
switch($error_code)
{
case 0:
//No error, no processing
break;
case 1:
$this->_data=array(1,'File reading error (Linux pay attention to read and write permissions)');
break;
case 2:
$this->_data=array(1,'File too small');
break;
case 3:
$this->_data =array(1,'Failed to read Excel header');
break;
case 4:
$this->_data=array(1,'File reading error');
break;
case 5:
$this->_data=array(1,'The file may be empty');
break;
case 6:
$this-> _data=array(1,'Incomplete file');
break;
case 7:
$this->_data=array(1,'Error reading data');
break ;
case 8:
$this->_data=array(1,'version error');
break;
}
unset($error_code);
}
/**
* Excel information acquisition
*/
private function getExcelInfo()
{
if(1==$this->_data[0])return;
/**
* Get the number of sheets
* Get the rows and columns corresponding to the sheet unit
*/
$this->_excel['sheet_number']=count($this->_excel_handle->worksheet['name']);
for($i=0;$i_excel['sheet_number'];$i++)
{
/**
* rows in columns
* Note: counting starts from 0
*/
$row=$this->_excel_handle->worksheet['data' ][$i]['max_row'];
$col=$this->_excel_handle->worksheet['data'][$i]['max_col'];
$this-> _excel['row_number'][$i]=($row==NULL)?0:++$row;
$this->_excel['col_number'][$i]=($col== NULL)?0:++$col;
unset($row,$col);
}
}
/**
* Chinese processing function
* @return
*/
private function uc2html($str )
{
$ret = '';
for( $i=0; $i
$charcode = ord( $str[$i*2])+256*ord($str[$i*2+1]);
$ret .= ''.$charcode.';';
}
return mb_convert_encoding($ret,'UTF-8','HTML-ENTITIES');
}
/**
* Excel data acquisition
*/
private function getExcelData()
{
if(1==$this->_data[0])return;
//Modify mark
$this->_data[0]=1;
//Get data
for($i=0;$i_excel['sheet_number'];$i++)
{
/**
* Loop over rows
*/
for($j=0; $j_excel['row_number'][$i];$j++)
{
/**
* Alignment loop
*/
for($k=0;$k_excel['col_number'][$i];$k++)
{
/**
* array(4) {
* ["type"] => Type [0 character type 1 integer 2 floating point number 3 date]
* ["font"] => Font
* ["data"] => data
* ...
* }
*/
$data=$this->_excel_handle->worksheet ['data'][$i]['cell'][$j][$k];
switch($data['type'])
{
case 0:
/ /Character type
if($this->_excel_handle->sst['unicode'][$data['data']])
{
//Chinese processing
$data[ 'data'] = $this->uc2html($this->_excel_handle->sst['data'][$data['data']]);
}
else
{
$data['data'] = $this->_excel_handle->sst['data'][$data['data']];
}
break;
case 1 :
//Integer
//TODO
break;
case 2:
//Floating point
//TODO
break;
case 3:
//Date
//TODO
break;
}
$this->_data[1][$i][$j][$k]=$data['data' ];
unset($data);
}
}
}
}
/**
* Main function
* @return
*/
public function main()
{
//Get Excel information
$this->getExcelInfo();
//Get Excel data
$this->getExcelData();
return $this->_data ;
}
}
?>

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
