Code Monkey home page Code Monkey logo

phpexcel's People

Contributors

janson-leung avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

phpexcel's Issues

Leading zeros

I use this script to read article numbers from an xlsx file and to write them to an API or to a txt file, which then imports these articles into my shop. Now I only have the following problem: Article numbers that start with a 0 will be cut off. Say 0112233 becomes 112233 through the conversion. What and where do I have to change so that the leading zeros are not cut off?

Reading csv file sometimes return no data

Hi @Janson-Leung

I am using your lib to read excel and csv files. However, I have encountered an issue using the csv reader.

For a particular file, it is not returning file data. When I tried to print the $row before yield $row, it prints the row output but not returning the data to the $reader.

When I loop through $reader, it has nothing. How to fix this issue?

Password protected excel

Hello,

Is there any way to preset the excel book password or passing the password to open the password protected excel?

Thanks

Not able to read currency symbol from excel

Hi,

I have a requirement in which I have to read rate card of customer. When I read xls file, the field that contain pound symbol and price is return as "NULL".

Please help.

Regards,
Aashish Kaushik

使用之中发现了一些小问题

  1. Excel5.php:使用之前没有检测,202行isset($this->_parse),223行:isset($this->_lastPos)
  2. XLS.php:67行 $this->index--
  3. SheetId和实际文件的对应关系应该有一些问题,主要是Sheets()函数

Row Grouping

hello,
Can we do row grouping? If there is this feature, how do we do it?
thanks.

Definition of the "lastColumnLetter" is not correct.

if ($columnLetter > $info['lastColumnLetter']) {

Excel2007 parser returns a wrong value of the "lastColumnLetter" if a sheet has more than 27 columns and columns with an index like "AH" are empty for latest rows.
I suggest that will be better to use condition like

if (strlen($columnLetter) > strlen($info['lastColumnLetter'])
    || (strlen($columnLetter) == strlen($info['lastColumnLetter']) && $columnLetter > $info['lastColumnLetter'])) {
    $info['lastColumnLetter'] = $columnLetter;
}

PHPExcel sets global error handler

The PHPExcel library sets the global error handler in Excel::load(), overriding any error handler that might have been set earlier. This can cause conflicts with error handlers set by frameworks etc.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.