mustangostang / spyc

A simple YAML loader/dumper class for PHP
MIT License
701 stars 206 forks source link

Hex support on php 7.0 #60

Closed FossPrime closed 7 years ago

FossPrime commented 7 years ago

As of 7.0.0 Strings in hexadecimal (e.g. 0xf4c3b00c) notation are no longer regarded as numeric strings, i.e. is_numeric() returns FALSE now.

therefore we can't rely on is_numeric.

jackmcdade commented 7 years ago

Thanks!