php.query
php.query copied to clipboard
A library to parse and create XML documents in an easy and intuitive way.
Results
1
php.query issues
Sort by
recently updated
recently updated
newest added
private function _isContainWordSelector($node) ``` php if (preg_match("/^\w+$/", $item) && $this->_value == $item) { ``` Proposed will... ``` php if (preg_match("/^[^\s]+$/", $item) && $this->_value == $item) { ```
enhancement