Skip to content
This repository was archived by the owner on Jan 2, 2019. It is now read-only.

Worksheet title invalid character check comparison #712

Open
wants to merge 2 commits into
base: 1.8
Choose a base branch
from
Open

Worksheet title invalid character check comparison #712

wants to merge 2 commits into from

Conversation

willselby
Copy link

Changed the comparison operator in Worksheet.php _checkSheetTitle() method from !== to !=, otherwise using an integer as a worksheet name throws this exception.

…tle from not identical to not equal comparison otherwise using an integer as a worksheet name throws this exception.
@MarkBaker
Copy link
Member

Except that a worksheet title should be a string

@willselby
Copy link
Author

What's wrong with having an integer as a worksheet title?

I need to create worksheets for years from the keys of an array as in; [2001, 2002, 2003]. Excel is perfectly happy with this, but this method causes them to throw an exception. I could go through the array and explicitly declare each as a string, but if the user checks the array of invalid characters then it isn't immediately obvious why this has failed.

If we insist on the title being a string then we could add; $pValue = (string) $pValue; within the method to take the responsibility of this away from the user.

Just thought this would make the life of the end user easier.

@MarkBaker
Copy link
Member

Excel isn't happy as you think.... effectively you're creating worksheets for['2001', '2002', '2003']not for[2001, 2002, 2003]`; because Excel worksheet names are strings, even if they're strings comprising all digits. Casting to a string is probably a better option than loosening the validation rules

@willselby
Copy link
Author

Ah ok, I was assuming it was happy working with integers rather than converting them to strings. In that case I think you're right about casting to strings rather than loosening the validation.

Cast $pValue as a string to prevent integers throwing an exception for invalid characters.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants